Disable ProgressPlugin which logs verbose webpack build progress

Warnings and Errors are still logged during build.
This commit is contained in:
Himanshu Mishra
2020-04-20 21:02:21 +09:00
parent 149e90249c
commit 7a5a57dd31
+4
View File
@@ -39,6 +39,10 @@ module.exports = {
},
);
config.resolve.extensions.push('.ts', '.tsx');
// Disable ProgressPlugin which logs verbose webpack build progress. Warnings and Errors are still logged.
config.plugins = config.plugins.filter(({ constructor }) => constructor.name !== "ProgressPlugin")
return config;
},
};