devServer: {
proxyTable: {
'/apis': {
// 测试环境
target: 'https://www.sdsd.net', // 接口域名
changeOrigin: true, //是否跨域
pathRewrite: {
'^/apis': ''
}
},
'/api': {
// 测试环境
target: 'https://www.sdsd.net', // 接口域名
changeOrigin: true, //是否跨域
pathRewrite: {
'^/api': ''
}
}
},
},
要这么配置吗?