在manifest.json中添加
/* h5特有相关 */
"h5" : {
"devServer" : {
"port" : 8080, //端口号
"disableHostCheck" : false,
"proxy" : {
"/api" : {
"target" : "http://xxxx.com", //目标接口域名或者ip地址
"changeOrigin" : true, //是否跨域
"secure" : true, // 设置支持https协议的代理
"pathRewrite" : {
"^/api" : "" // 重写,
}
}
},
"https" : false
},
}
来源:CSDN
作者:iorn_mangg
链接:https://blog.csdn.net/iorn_mangg/article/details/104310519