跨域处理

module.exports = {
devServer: {
// 本地ip地址
host: "localhost",
port: 3000,
open: true,
/* 使用代理 */
proxy: {
"/api": {
/* 目标代理服务器地址 */
target: "https://wechat.eonbox.tech",
/* 允许跨域 */
changeOrigin: true,
ws: false,
pathRewrite: {
"^/api": "/",
},
},
},
},
};
posted @ 2022-05-13 17:38  深圳老爸爸  阅读(31)  评论(0)    收藏  举报