From dd8a6a12ba10726a29be7fc1f66c14ce366abbdc Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Fri, 8 Dec 2017 14:03:14 +0900
Subject: [PATCH] Minify CSS

---
 gulpfile.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gulpfile.ts b/gulpfile.ts
index dd8fc7a63..cb7227213 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -210,7 +210,10 @@ gulp.task('build:client:pug', [
 				// 属性の値がデフォルトと同じなら省略する e.g.
 				// <input type="text"> to
 				// <input>
-				removeRedundantAttributes: true
+				removeRedundantAttributes: true,
+
+				// CSSも圧縮する
+				minifyCSS: true
 			}))
 			.pipe(gulp.dest('./built/web/app/'))
 );