Update Vite config for test environment

- Add environment-specific configuration
- Support test mode setup

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Cal Corum 2026-02-01 20:51:12 -06:00
parent 594aa2d8ad
commit c274ff6d3a

View File

@ -14,11 +14,11 @@ export default defineConfig({
port: 3000, port: 3000,
proxy: { proxy: {
'/api': { '/api': {
target: 'http://localhost:8000', target: 'http://localhost:8001',
changeOrigin: true changeOrigin: true
}, },
'/socket.io': { '/socket.io': {
target: 'http://localhost:8000', target: 'http://localhost:8001',
changeOrigin: true, changeOrigin: true,
ws: true ws: true
} }