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'

浙公网安备 33010602011771号