module.exports = {
devServer: {
proxy: {
'/api1': {
target: 'api1_url',
ws: true,
/* 允许跨域 */
changeOrigin: true,
pathRewrite: {
'^/api1': ''
}
},
'/api2': {
target: 'api2_url',
ws: true,
/* 允许跨域 */
changeOrigin: true,
pathRewrite: {
'^/api2': ''
}
}
}
}
}