We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697eef5 commit 0cda390Copy full SHA for 0cda390
config/Webpack.config.ts
@@ -38,17 +38,17 @@ class WebpackConfig implements Configuration {
38
constructor(mode: Configuration['mode']) {
39
this.mode = mode;
40
if (mode === 'development') {
41
- this.entry.push('webpack/hot/signal');
+ this.entry.push('webpack/hot/poll?1000');
42
this.externals.push(
43
nodeExternals({
44
- whitelist: ['webpack/hot/signal']
+ whitelist: ['webpack/hot/poll?1000']
45
})
46
);
47
const devPlugins = [
48
new webpack.HotModuleReplacementPlugin(),
49
new StartServerPlugin({
50
name: 'server.js',
51
- signal: true,
+ signal: false,
52
nodeArgs: ['--inspect']
53
}),
54
]
0 commit comments