Merge pull request #604 from OrkoHunter/OrkoHunter/remove-verbose-webpack-progress-logging

Disable Verbose logging when building Storybook
This commit is contained in:
Fredrik Adelöw
2020-04-20 14:24:21 +02:00
committed by GitHub
+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;
},
};