From 44936b9b11d847e2d2feb88e2afc8dbacc44240f Mon Sep 17 00:00:00 2001 From: dongmucat <1127093059@qq.com> Date: Thu, 19 Mar 2026 17:30:12 +0800 Subject: [PATCH] feat: Initialize Vite configuration for React development with path aliases, server settings, and API proxies. --- web/vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/vite.config.ts b/web/vite.config.ts index 2ec40cc3..44db2323 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -17,11 +17,11 @@ export default defineConfig({ }, proxy: { '/api': { - target: 'http://10.1.203.231:8080', + target: 'http://localhost:8080', changeOrigin: true, }, '/oauth2': { - target: 'http://10.1.203.231:8080', + target: 'http://localhost:8080', changeOrigin: true, }, },