From 9d635ad519452544c38ca54a9ceb0bb4996255e7 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 25 May 2017 16:40:37 +0900 Subject: [PATCH] Disable minification temporaly (Fuck Webkit) --- 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 c35350726..097ee8c87 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -12,11 +12,11 @@ export default version => { constant(), new StringReplacePlugin() ]; - +/* if (isProduction) { plugins.push(minify()); } - +*/ plugins.push(banner(version)); return plugins;