From 47d0c7cab5cf2490e0b85492c720bf6d7dc4c28b Mon Sep 17 00:00:00 2001 From: Vincent JAILLOT Date: Wed, 24 Jan 2024 11:53:33 +0100 Subject: [PATCH] chore(webpack): stop watching node modules in dev mode --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index e6386494b5..31f6975fd5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -99,7 +99,7 @@ module.exports = () => { static: { directory: path.resolve(__dirname, './'), watch: { - ignored: path.resolve(__dirname, '.git'), + ignored: [path.resolve(__dirname, '.git'), path.resolve(__dirname, 'node_modules')], }, }, client: {