vue 跨域处理

wonder-question / 2024-02-24 / 原文

vue.config.js中配置
module.exports = defineConfig({
  transpileDependencies: true,
  dev:{
    proxyTable:{
      '/api':{
        target:'http://localhost:8088',
        changeOrigin:true,
        pathRewrite:{
          '^SymbolYCp/api':''
        }
      }
    }
  }
});
main.js中
axios.defaults.baseURL='/api'