vuecli3 配置多个代理
程序员文章站
2022-05-17 21:03:30
...
module.exports = {
devServer: {
proxy: {
'/api1': {
target: 'api1_url',
ws: true,
/* 允许跨域 */
changeOrigin: true,
pathRewrite: {
'^/api1': ''
}
},
'/api2': {
target: 'api2_url',
ws: true,
/* 允许跨域 */
changeOrigin: true,
pathRewrite: {
'^/api2': ''
}
}
}
}
}