diff --git a/apps/ligo-virgo/webpack.config.js b/apps/ligo-virgo/webpack.config.js index 3b0750fade..a960c2a54e 100644 --- a/apps/ligo-virgo/webpack.config.js +++ b/apps/ligo-virgo/webpack.config.js @@ -203,10 +203,10 @@ module.exports = function (webpackConfig) { new BundleAnalyzerPlugin({ analyzerMode: 'static' }), ].filter(Boolean); - // Workaround for webpack infinite recompile errors config.watchOptions = { // followSymlinks: false, - ignored: ['**/*.css'], + // Ignore css to workaround webpack infinite recompile errors + ignored: ['**/node_modules', '**/*.css'], }; return config;