0

对此问题的任何帮助将不胜感激。

我想在 webpack index.js 中动态设置代理目标

proxyTable: {
    '/api': {
    target: 'http://' +  window.location.hostname.split('.')[0] + '.example.com',
    changeOrigin: true,
    pathRewrite: {
      '^/api': ''
    }
  }
},

并且 webpack 给出错误 ReferenceError: window is not defined

4

0 回答 0