From 34b01f94e4dacae0d92b8695d400e5fef85ba8e7 Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Tue, 3 Sep 2019 11:36:10 +0200 Subject: [PATCH] Added minification to web compile script (#631) --- server-ce/bin/compile-services | 1 + 1 file changed, 1 insertion(+) diff --git a/server-ce/bin/compile-services b/server-ce/bin/compile-services index 471a2b7130..1c508ae693 100755 --- a/server-ce/bin/compile-services +++ b/server-ce/bin/compile-services @@ -11,6 +11,7 @@ grep 'name:' config/services.js | \ case $service in web) make compile_full + WEBPACK_ENV=production make minify ;; chat) echo "$service doesn't require a compilation"