ci: 更新API代理目标地址为生产环境

将开发环境的本地代理地址改为线上生产环境地址,以便于测试和生产环境对接
This commit is contained in:
qingfeng1121
2025-12-15 17:54:13 +08:00
parent ede67faafd
commit 183d98a699

View File

@@ -30,7 +30,8 @@ export default defineConfig({
proxy: {
// 配置API代理
'/api': {
target: 'http://localhost:7071',
target: 'http://www.qf1121.top',
// target: 'http://localhost:7071',
changeOrigin: true,
rewrite: (path) => path
}