From c8648544c024cb18407450b99dd979e5d6d3d121 Mon Sep 17 00:00:00 2001 From: Luke Camilleri Date: Mon, 22 Oct 2018 00:16:04 +0200 Subject: [PATCH] chore(webpack-config): Minify built output --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 353574b..ce6d882 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -41,9 +41,9 @@ module.exports = () => ({ new UglifyJsPlugin({ uglifyOptions: { mangle: false, - compress: false, + compress: true, output: { - beautify: true, + beautify: false, indent_level: 2 // eslint-disable-line camelcase } }