don't have webpack produce a .gz of output by default
This commit is contained in:
parent
08fc21c890
commit
fccdee35ed
|
@ -165,7 +165,8 @@ devBabelLoader.options.compact = false;
|
||||||
const production = cloneDeep(base);
|
const production = cloneDeep(base);
|
||||||
production.mode = 'production';
|
production.mode = 'production';
|
||||||
production.name = 'production';
|
production.name = 'production';
|
||||||
production.plugins.push(new CompressionPlugin());
|
// compression of webpack's JS output not enabled by default
|
||||||
|
// production.plugins.push(new CompressionPlugin());
|
||||||
|
|
||||||
// export a list of named configs
|
// export a list of named configs
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue