React配置Proxy

作者: ChangLau | 来源:发表于2019-03-20 09:53 被阅读0次
  • 安装http-proxy-middleware
npm install http-proxy-middleware
  • 在src下建立setupProxy.js文件
const proxy = require("http-proxy-middleware");
module.exports = function(app) {
  app.use(
    proxy("/api", {
      target: "https://www.coffeecola.cn:8080/",
      changeOrigin: true, // needed for virtual hosted sites
      ws: true, // proxy websockets
      pathRewrite: {
        "^/api": ""
      }
    })
  );
};

重启服务,如果后端服务为Https,使用HTTPS=true npm start启动

相关文章

网友评论

    本文标题:React配置Proxy

    本文链接:https://www.haomeiwen.com/subject/oniamqtx.html