跨域处理
module.exports = {
devServer: {
// 本地ip地址
host: "localhost",
port: 3000,
open: true,
/* 使用代理 */
proxy: {
"/api": {
/* 目标代理服务器地址 */
target: "https://wechat.eonbox.tech",
/* 允许跨域 */
changeOrigin: true,
ws: false,
pathRewrite: {
"^/api": "/",
},
},
},
},
};

浙公网安备 33010602011771号