On this page
兼容H5端和配置跨域问题
具体看课程演示
json5
{
// 以上省略很多代码...
"h5": {
"devServer": {
"https": false,
"proxy": {
"/api": {
"target": "http://localhost:7001/",
"changeOrigin": true,
"ws": true,
"pathRewrite": {
"^/api": ""
}
}
}
}
}
}