🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
manifest.json ``` "h5" : { "template" : "template.h5.html", "router" : { "mode" : "hash", "base" : "/app/" }, "optimization" : { "treeShaking" : { "enable" : true } }, "devServer" : { "disableHostCheck" : true, // 开启可以用自己的域名 "proxy": { "/api": { "target": "http://www.sq.com", "changeOrigin" : true, "secure" : false, "pathRewrite": { //匹配请求路径里面有 /api 会替换成https://www.test.com // 举例:/api/api/user => https://www.test.com/api/user "^/api": "" } } } } } ``` config.js ``` const config={ apiBaseUrl:"api/api/", //apiBaseUrl:"http://py.q05.cc/api/", //apiBaseUrl:"http://www.community.com/api/", compress:true, //是否开启图片压缩,仅限七牛云存储图片压缩 comunityCompressRule:"?imageView2/2/w/340/h/340/q/50|imageslim" ,//社区图片七牛云压缩规则 headerCompressRule:"?imageView2/2/w/100/h/100/q/50|imageslim" //社区图片七牛云压缩规则 } export { config } ```