vue 配置开发服务器反向代理
编辑 vue.config.js
module.exports = {
devServer: {
port: 8080,
proxy: {
'/后台项目名': {
target: 'http://127.0.0.1:8081/后台项目名',
pathRewrite: {'^/后台项目名': '/'}
}
}
}
};
正文到此结束