方案一:
在.electron-vue/dev-runner.js文件配置代理
proxy:{
"/live": {//接口
target: " https://xx.xxx.com", //需要跨域的目标url ,我这里是自己本地起的一个服务端口
changeOrigin: true, //开启跨域
},
'/room': {//房间接口
target: 'https://xx.xxx.com', //
changeOrigin: true,
}
}
代理配置
方案二:
服务端配置cros,前端不做任何处理
网友评论