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': '*',
|
'Access-Control-Allow-Origin': '*',
|
||||||
},
|
},
|
||||||
overlay: true,
|
overlay: true,
|
||||||
stats: {
|
stats: 'errors-warnings',
|
||||||
entrypoints: false,
|
|
||||||
errorDetails: false,
|
|
||||||
modules: false,
|
|
||||||
moduleTrace: false,
|
|
||||||
},
|
|
||||||
watchOptions: Object.assign(
|
watchOptions: Object.assign(
|
||||||
{},
|
{},
|
||||||
{ ignored: '**/node_modules/**' },
|
{ ignored: '**/node_modules/**' },
|
||||||
|
|
|
@ -14,7 +14,7 @@ const smp = new SpeedMeasurePlugin();
|
||||||
module.exports = smp.wrap(merge(sharedConfig, {
|
module.exports = smp.wrap(merge(sharedConfig, {
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
devtool: 'source-map',
|
devtool: 'source-map',
|
||||||
stats: 'normal',
|
stats: 'errors-warnings',
|
||||||
bail: true,
|
bail: true,
|
||||||
optimization: {
|
optimization: {
|
||||||
minimize: true,
|
minimize: true,
|
||||||
|
|
Loading…
Reference in a new issue