diff --git a/web/vite.config.ts b/web/vite.config.ts index 8b0f57b..6c52edd 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -4,4 +4,17 @@ import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], + server: { + host: '0.0.0.0', + proxy: { + '/api': { + target: 'http://localhost:8080', + changeOrigin: true, + }, + '/ws': { + target: 'ws://localhost:8080', + ws: true, + }, + }, + }, })