Vue解決跨域之反向代理

目錄 : 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' } } },}
相關文章
相關標籤/搜索