主要思路
- 通过配置manifest.json文件中的h5选项来完成设置
- h5是一级属性。
修改manifest.json文件
以下两种都能满足要求
"h5" : {
"devServer" : {
"https" : false,
"port" : 8081,//见备注1
"disableHostCheck" : true,
"proxy" : {
"/" : {
"target" : "http://xxx.xxx.xxx.xxx:pppp",
"changeOrigin" : true,
"secure" : false
}
}
}
}
"h5" : {
"devServer" : {
"https" : false,
"port" : 8081,//见备注1
"disableHostCheck" : true,
"proxy" : {
"/api" : {
"target" : "http://xxx.xxx.xxx.xxx:pppp",
"changeOrigin" : true,
"secure" : false,
"pathRewrite" : {
"^/api" : "/"
}
}
}
}
}
备注
- hbulider启动的服务的端口