From fccdee35ed4600db6b34c297b40be9d411db5e41 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Tue, 28 Aug 2018 15:45:11 -0500 Subject: [PATCH] don't have webpack produce a .gz of output by default --- lib/pipeline/webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pipeline/webpack.config.js b/lib/pipeline/webpack.config.js index db190f49..3918c8ad 100644 --- a/lib/pipeline/webpack.config.js +++ b/lib/pipeline/webpack.config.js @@ -165,7 +165,8 @@ devBabelLoader.options.compact = false; const production = cloneDeep(base); production.mode = '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 // -----------------------------------------------------------------------------