ソースを参照

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