don't have webpack produce a .gz of output by default

This commit is contained in:
Michael Bradley, Jr 2018-08-28 15:45:11 -05:00
parent 08fc21c890
commit fccdee35ed
1 changed files with 2 additions and 1 deletions

View File

@ -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
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------