|
@@ -22,8 +22,7 @@ export default defineConfig({
|
|
proxy: {
|
|
proxy: {
|
|
// 代理配置
|
|
// 代理配置
|
|
'/api': {
|
|
'/api': {
|
|
- // target: 'http://192.168.1.104:8083', // 目标服务器
|
|
|
|
- target: 'http://192.168.99.49:8083', // 目标服务器
|
|
|
|
|
|
+ target: 'http://localhost:8083', // 目标服务器
|
|
changeOrigin: true, // 需要虚拟主机站点
|
|
changeOrigin: true, // 需要虚拟主机站点
|
|
rewrite: (path) => path.replace(/^\/api/, '/api/') // 重写 API 请求
|
|
rewrite: (path) => path.replace(/^\/api/, '/api/') // 重写 API 请求
|
|
}
|
|
}
|