Browser: Chrome / IE11
[x] This is a bug
// webpack.config.js
{
mode: 'development',
entry: './src/js/index.jsx',
target: ['web', 'es5']
// ... pretty basic stuff
devServer: {
hot: true,
compress: true,
overlay: true,
}
}
Page should reload when files are changed.
HMR should connect via websocket
Not reloading. No message in the console either.
It seems websocket is not connected? I checked the Network - WS panel in Chrome devtools.
When I use target: ['web', 'es5'], HMR doesn't seem to work. When I open the page I can see a [HMR] Waiting for update signal from WDS... message but there is no second "[WDS] ..." (HMR enabled confirmation message). When I check the Networks tab in devtools, there are no WS connections.
Curiously, when I change target: 'web' in the same config file - HMR works fine.
Yes, it is fixed in [email protected]
thanks @alexander-akait
I tried it yesterday but it wasn't working either. Maybe I missed something, but I can try it again today 馃
Is there a (draft) migration guide? I have a couple of devServer configs that are no longer supported in v4.
I have a couple of devServer configs that are no longer supported in v4.
What do you mean? How you run webpack-dev-server in this case?
I have a couple of devServer configs that are no longer supported in v4.
What do you mean? How you run webpack-dev-server in this case?
Eh, I just looked at the errors and took some guesses. BTW I'm running the server with the JS API not CLI.
e.g. I'm getting _webpackDevServer.default.addDevServerEntrypoints is not a function and various errors like configuration has an unknown property 'stats' - I removed some non-essential ones (e.g. clientLogLevel) and tweaked the rest to get it to run - maybe that's where I messed things up?
_webpackDevServer.default.addDevServerEntrypoints is not a function because default doesn't exists, we don't use import or export
configuration has an unknown property 'stats'
Please read changelog many options were removed and it was described
_webpackDevServer.default.addDevServerEntrypoints is not a functionbecausedefaultdoesn't exists, we don't useimportorexportconfiguration has an unknown property 'stats'
Please read changelog many options were removed and it was described
Thanks - somehow I missed it earlier. 馃槄
I fixed the config and HMR is working as intended. Thanks for your help!