On this page
H5端交互跨域问题
manifest.json
json5
{
"h5" : {
"devServer" : {
"https" : false,
"proxy" : {
"/api" : {
"target" : "http://localhost:7001/",
"changeOrigin" : true,
"ws" : true,
"pathRewrite" : {
"^/api" : ""
}
}
}
}
}
}