From 46893dc83835d7e460c56d1067cefdd0ef82514d Mon Sep 17 00:00:00 2001 From: Martynas Bagdonas Date: Mon, 10 Jan 2022 10:12:29 +0200 Subject: [PATCH] Disable polling for webpack dev server file watch --- webpack.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 7ddb18e9..8ff7627a 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -91,9 +91,9 @@ const configWeb = { contentBase: path.join(__dirname, 'build/'), openPage: 'web/viewer.html', open: false, - watchOptions: { - poll: true - } + // watchOptions: { + // poll: true + // } } };