目录 : config/index.js
module.exports = { dev: { // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', //代理配置 proxyTable: { '/api':{ //使用api 来代替 http://localhost:3000 target:"http://localhost:3000", // 目标源 changeOrign:true, //改变源地址 是否跨域 pathRewrite:{ //路径重写 '^/api':'http://localhost:3000' } } },}