vue-cli使用proxy代理
module.exports = {
publicPath: '/', //项目的公共路径
devServer: { //开发用的服务器配置
proxy: {
'/api': {
target: 'http://localhost:8091', //这里是目标服务器地址
changeOrigin: true, //是否改变源地址
ws: true, //是否支持websocket协议
pathRewrite: { //路径重写
'^/api': '' //这里一定要为空
}
}
}
}
}
若有仙鹤从旁骥,尽是人间第一流。