首页 > 建站教程 > APP开发,混合APP >  uniapp mainfest.json中配置proxy代理正文

uniapp mainfest.json中配置proxy代理

uni-app开发H5或web端需要代理,但开发app和小程序时是不需要代理的。mainfest.json中的h5节点可以配置web端代理,代码如下:

"h5" : {
  "devServer" : {
    "https" : true,
    "disableHostCheck" : true,
    "proxy" : {
     "/api" : {
       "target" : "http://60.173.22.208:2000",
       "ws" : false,
       "secure" : false,
       "changeOrigin" : true,
       "pathRewrite" : {
         "^/api" : "/api"
       }
     }
    }
  }
}