From 6cff95a64b73419eed2997179f98a4d9332b2a29 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Fri, 12 Aug 2022 14:29:12 +0200 Subject: [PATCH] Reduce webpack outpout --- config/webpack/webpack.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/webpack/webpack.config.js b/config/webpack/webpack.config.js index 03080f1c..2affdfc8 100644 --- a/config/webpack/webpack.config.js +++ b/config/webpack/webpack.config.js @@ -42,7 +42,12 @@ const envConfig = module.exports = { Sentry: '@sentry/browser', Sortable: 'sortablejs', }) - ] + ], + performance: { + // Turn off size warnings for large assets + hints: false + }, + stats: 'minimal' } module.exports = merge(webpackConfig, envConfig)