From a5fc381733447f0b4748c4c80f41ae38820f847d Mon Sep 17 00:00:00 2001 From: BART! Date: Sun, 23 Jul 2017 14:45:28 +0200 Subject: [PATCH] =?UTF-8?q?chore(webpack):=20remove=20useless=20obfuscator?= =?UTF-8?q?=20=F0=9F=87=B3=F0=9F=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reasons: - Guys from Opera need readable bundle for review 🇳🇴 - This is open source project --- config/webpack.prod.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/webpack.prod.js b/config/webpack.prod.js index 9c07e3b..3b169f3 100755 --- a/config/webpack.prod.js +++ b/config/webpack.prod.js @@ -13,7 +13,9 @@ module.exports = function (options) { } return webpackMerge(commonConfig(), { plugins: [ - new webpack.optimize.UglifyJsPlugin, + new webpack.optimize.UglifyJsPlugin({ + compress: false + }), new CopyWebpackPlugin([ { from: 'src/manifest-common.json',