From c274ff6d3a1b6853ab2fbeca77f176d7305acf3c Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sun, 1 Feb 2026 20:51:12 -0600 Subject: [PATCH] Update Vite config for test environment - Add environment-specific configuration - Support test mode setup Co-Authored-By: Claude Sonnet 4.5 --- frontend/vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 901bec4..b01aeda 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -14,11 +14,11 @@ export default defineConfig({ port: 3000, proxy: { '/api': { - target: 'http://localhost:8000', + target: 'http://localhost:8001', changeOrigin: true }, '/socket.io': { - target: 'http://localhost:8000', + target: 'http://localhost:8001', changeOrigin: true, ws: true }