diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index 898772748e..7b47ffd674 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -16,8 +16,12 @@ export default defineConfig(({ mode }) => { port: 3000, strictPort: true, proxy: { + // Main API URLs "/v1": SERVER_URL, + // Core API URLs + "/health": SERVER_URL, "/version": SERVER_URL, + // WebSocket "/ws": SERVER_URL, }, },