Webpack: suppress output

This commit is contained in:
Alex Gleason 2021-09-04 16:05:20 -05:00
parent 16470c605f
commit 5ea4a8e869
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 2 additions and 7 deletions

View file

@ -83,12 +83,7 @@ module.exports = smp.wrap(merge(sharedConfig, {
'Access-Control-Allow-Origin': '*',
},
overlay: true,
stats: {
entrypoints: false,
errorDetails: false,
modules: false,
moduleTrace: false,
},
stats: 'errors-warnings',
watchOptions: Object.assign(
{},
{ ignored: '**/node_modules/**' },

View file

@ -14,7 +14,7 @@ const smp = new SpeedMeasurePlugin();
module.exports = smp.wrap(merge(sharedConfig, {
mode: 'production',
devtool: 'source-map',
stats: 'normal',
stats: 'errors-warnings',
bail: true,
optimization: {
minimize: true,