我的webpack.config.js
文件在module.exports
内包含以下代码
devServer: {
host: 'localhost',
proxy: {
'**': {
'target': 'http://localhost:8888'
}
},
contentBase: path.join(__dirname, "./templates"),
watchContentBase: true
}
每当我更改/templates
中的文件时,它都可以正常工作,但是更改子目录下的任何文件(如/templates/contacts/
)都不会触发页面刷新。
我想念什么?