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" } } } } }