瀏覽代碼

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,
       },
     },