From aea96f2f9af9fc8137813676bd8ef9b51c464530 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 30 Aug 2016 23:41:10 +1200 Subject: [PATCH] Enable UglifyJS mangling We've disabled this previously because it was interfering with JS sourcemaps and breakpoints. After some spot tests, this no longer seems to be the case with webpack generated sourcemaps. --- webpack.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 839356784..d6ff67f93 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -153,7 +153,6 @@ const config = [ unused: false, warnings: false, }, - mangle: false, }), new ExtractTextPlugin('styles/bundle.css', { allChunks: true }), ],