当前位置: 首页 > Web前端 > vue.js

Vue3跨域

时间:2023-03-31 15:27:02 vue.js

使用同源策略将后端api地址映射到本地//vue.config.jsmodule.exports={devServer:{proxy:{'/v1':{target:'http://192.168.0.90:3000',//请求接口API地址ws:true,changeOrigin:true,pathRewrite:{'^/v1':'/v1',//API路径前缀},},},},}配置参考|VueCLI官方文档cli.vuejs.org