Enable webpack polling

This commit is contained in:
Björn Fromme
2020-04-17 13:52:26 +02:00
parent 5e14f1a6a8
commit 140eb95da4
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -60,7 +60,8 @@ Encore
babelConfig.plugins = [ '@babel/plugin-proposal-object-rest-spread', '@babel/plugin-syntax-dynamic-import' ]
})
.configureWatchOptions(function (options) {
options.poll = 250;
options.poll = 500;
options.ignored = /node_modules/;
});
const EpEventsConfig = Encore.getWebpackConfig();