Explorar o código

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

fszontagh hai 6 meses
pai
achega
6b3ba04a31
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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,
       },
     },