I have the below grunt task in my express/webpack app that starts a webpack-dev-server:
"webpack-dev-server": {
options: {
webpack: webpackConfig,
publicPath: '/assets/',
watch: true,
inline: true,
hot: true,
quiet: true
},
start: {
keepAlive: true,
webpack: {
devtool: 'eval',
debug: true
}
}
}
The issue I'm having is that the poller just spams my chrome console which is gonna be pretty annoying when it comes to debugging. (I'm in the bare-bones app stage).
Anybody any ideas at all what could be causing this?
found it myself:
set host
option in grunt to 'localhost'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With