在manifest文件中添加配置如下, 不能解决跨域的问题, 或者在vue.config.js中配置也是无效, 最后没有办法重装HbuilderX也是无效,不知道这个东西使用的时候有什么要求,是不是只有cli项目的才能使用这个devServer
"h5": {
"template": "index.html",
"title": "自测项目",
"devServer": {
"disableHostCheck": false,
"proxy": {
"/api": {
"target": "http://127.0.0.1:3000", //请求的目标域名
"changeOrigin": true,
"secure": false,
"pathRewrite": {
"^/api": ""
}
}
},
"port": 3002,
"https": false
},
"router": {
"mode": "hash"
},
"domain": "",
"optimization": {
"treeShaking": {
"enable": true
}
}
}
h***@outlook.com
感谢博主思路,完美解决了问题
2022-09-06 12:20