From e4959c6ccb50ec8a7b2753d2aab938bc61d28e9b Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 17 Oct 2024 00:49:06 +0300 Subject: [PATCH] webpack: Reduce logging --- webpack.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 0f0154a35..a4b5ce9dd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,9 +5,13 @@ export const publicLibConfig = { cache: true, devtool: 'source-map', module: {}, + stats: 'minimal', experiments: { outputModule: true, }, + performance: { + hints: false, + }, output: { filename: 'lib.js', libraryTarget: 'module',