From f37f28020db8e1840ecfc4a14c7073a2517a4d0a Mon Sep 17 00:00:00 2001 From: Nikolay Yurchenko Date: Wed, 6 Nov 2019 19:44:20 +0200 Subject: [PATCH] bug with not compressing to small css file fixed (#3516) --- web/satellite/vue.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/satellite/vue.config.js b/web/satellite/vue.config.js index 26b786d2f..504cd3541 100644 --- a/web/satellite/vue.config.js +++ b/web/satellite/vue.config.js @@ -15,7 +15,7 @@ module.exports = { new CompressionWebpackPlugin({ algorithm: 'gzip', test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'), - threshold: 10240, + threshold: 1024, minRatio: 0.8 }), new StyleLintPlugin({