Webpack 4开发服务器代理无法识别通配符

时间:2018-08-25 18:14:32

标签: webpack proxy wildcard webpack-dev-server webpack-4

我的webpack.config.js文件在module.exports内包含以下代码

devServer: {
    host: 'localhost',
    proxy: {
      '**': {
        'target': 'http://localhost:8888'
      }
    },
    contentBase: path.join(__dirname, "./templates"),
    watchContentBase: true
  }

每当我更改/templates中的文件时,它都可以正常工作,但是更改子目录下的任何文件(如/templates/contacts/)都不会触发页面刷新。

我想念什么?

0 个答案:

没有答案