From 15d363fc63ebfba06327835f1e2d361aa19bb844 Mon Sep 17 00:00:00 2001 From: "Jodiss, Paul" Date: Thu, 2 May 2019 09:03:19 +0200 Subject: [PATCH] sets minimize to false --- webpack.config.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index e39c2ce..bafda9e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -20,10 +20,12 @@ module.exports = { presets: ['react', 'env', 'es2015'], plugins: ['transform-class-properties', 'transform-object-rest-spread'] } - } - ]}, - externals: [nodeExternals()], - plugins: [ - // new webpack.optimize.UglifyJsPlugin() - ] + } + ] + }, + externals: [nodeExternals()], + plugins: [], + optimization: { + minimize: false + } } \ No newline at end of file