创建vue.config.js
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:7788',
ws: true,
changeOrigin: true,
pathRewirte:{
//路径重写
'^/api':''
}
},
'/foo':{
target:'http://localhost:3001'
}