Merge remote-tracking branch 'origin/develop' into fix/sync-bug

This commit is contained in:
alt0
2022-09-23 19:17:30 +08:00
+2 -2
View File
@@ -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;