From 6bac17917ec9c3b387738ba8f97145c88a270957 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 28 Nov 2017 18:14:24 +0900 Subject: [PATCH] MAKE COMPRESSION GREAT AGAIN --- webpack/plugins/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack/plugins/index.ts b/webpack/plugins/index.ts index 3d1416d1e..9850db485 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -2,7 +2,7 @@ const StringReplacePlugin = require('string-replace-webpack-plugin'); import consts from './consts'; import hoist from './hoist'; -//import minify from './minify'; +import minify from './minify'; import banner from './banner'; const env = process.env.NODE_ENV; @@ -16,7 +16,7 @@ export default (version, lang) => { ]; if (isProduction) { - //plugins.push(minify()); + plugins.push(minify()); } plugins.push(banner(version));