目錄 : 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' } } },}