config文件夹下的index.js中
module.exports = {
dev: { //开发环境
assetsSubDirectory: 'static',
assetsPublicPath: '/',
//跨域设置
proxyTable: {
'/rest': {
target: "https://www.xxxx.com/", //要跨域的接口域名
changeOrigin: true, //是否跨域
pathRewrite: { //地址重写
'^/rest': ''
}
}
},