vue 跨域处理

vue.config.js中配置
module.exports = defineConfig({
  transpileDependencies: true,
  devServer:{
    proxy:{
      '/api':{
        target:'http://localhost:8088',
        changeOrigin:true,
        pathRewrite:{
          '^SymbolYCp/api':''
        }
      }
    }
  }
});
main.js中
axios.defaults.baseURL='/api'
posted @ 2024-02-24 01:00  hongdouni  阅读(11)  评论(0)    收藏  举报