webpack: Reduce logging

e4959c6ccb50ec8a7b2753d2aab938bc61d28e9b

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +4 -0Ignore whitespace
webpack.config.js+4 -0
@@ -5,9 +5,13 @@ export const publicLibConfig = {
5 cache: true,5 cache: true,
6 devtool: 'source-map',6 devtool: 'source-map',
7 module: {},7 module: {},
8 stats: 'minimal',
8 experiments: {9 experiments: {
9 outputModule: true,10 outputModule: true,
10 },11 },
12 performance: {
13 hints: false,
14 },
11 output: {15 output: {
12 filename: 'lib.js',16 filename: 'lib.js',
13 libraryTarget: 'module',17 libraryTarget: 'module',