From d122133e931d12afa0468a5cdb4861db451fdd82 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 29 Jun 2026 16:14:11 +0000 Subject: [PATCH] config: expose vite dev server to lan and configure api proxy --- web/vite.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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, + }, + }, + }, })