Webpack: suppress output
This commit is contained in:
parent
16470c605f
commit
5ea4a8e869
2 changed files with 2 additions and 7 deletions
|
@ -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/**' },
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue