فهرست منبع

fix: update Vite proxy ports to match webserver (8090/8091)

fszontagh 6 ماه پیش
والد
کامیت
6b3ba04a31
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      webui/vite.config.ts

+ 2 - 2
webui/vite.config.ts

@@ -18,11 +18,11 @@ export default defineConfig({
     port: 3200,
     proxy: {
       '/api': {
-        target: 'http://localhost:18080',
+        target: 'http://localhost:8090',
         changeOrigin: true,
       },
       '/ws': {
-        target: 'ws://localhost:18081',
+        target: 'ws://localhost:8091',
         ws: true,
       },
     },