Forráskód Böngészése

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

fszontagh 6 hónapja
szülő
commit
6b3ba04a31
1 módosított fájl, 2 hozzáadás és 2 törlés
  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,
       },
     },