From db7ccaf5a09829fbc22dbd158aadf6f95383e908 Mon Sep 17 00:00:00 2001 From: wangziqi Date: Thu, 2 Jul 2026 14:19:13 +0800 Subject: [PATCH] chore: set frontend dev port to 3002 (avoid PORT env var conflict) --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8f64208..6e79f2c 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -5,7 +5,7 @@ import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], server: { - port: 3000, + port: 3002, proxy: { '/api': { target: 'http://localhost:3001',