uniapp配置代理
2022-07-28


文件:vue.config.js / manifest.json



"h5":{  

 "devServer" : {
           "disableHostCheck" : true,
           "proxy" : {
               "/api" : {
                   "target" : "https://test1.honeyclover.xyz",
                   "changeOrigin" : true,
                   "secure" : true,
                   "pathRewrite": {
                       "^/api": "/"
                   }
               }
           }
       },

..........

}