From 9db629d0e1fee6c9b7a1f89c8d0f4d3bd32b5119 Mon Sep 17 00:00:00 2001 From: Ludovico Fischer Date: Tue, 21 Dec 2021 18:46:58 +0100 Subject: [PATCH] Only output warnings and errors to the console Reduce the noise on the console to be closer to CRA 4. --- packages/react-scripts/config/webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-scripts/config/webpack.config.js b/packages/react-scripts/config/webpack.config.js index 2b1b3bbd47d..94be32a2e57 100644 --- a/packages/react-scripts/config/webpack.config.js +++ b/packages/react-scripts/config/webpack.config.js @@ -787,6 +787,7 @@ module.exports = function (webpackEnv) { }, }), ].filter(Boolean), + stats: 'errors-warnings', // Turn off performance processing because we utilize // our own hints via the FileSizeReporter performance: false,