From e31e35c0b5cf252f64b30152590f3157c57551c4 Mon Sep 17 00:00:00 2001 From: wood chen Date: Sat, 8 Feb 2025 21:30:48 +0800 Subject: [PATCH] Update Vite proxy to use local development server --- frontend/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 4cc2615..d6da2d6 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -7,7 +7,7 @@ export default defineConfig({ server: { proxy: { '/api': { - target: 'https://aimodels-prices.q58.pro', + target: 'http://localhost:8080', changeOrigin: true } }