summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/webpack.config.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index b7b80f4bf47..03ba40daab0 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -226,10 +226,12 @@ if (IS_PRODUCTION) {
})
);
+ // zopfli requires a lot of compute time and is disabled in CI
if (!NO_COMPRESSION) {
config.plugins.push(
new CompressionPlugin({
asset: '[path].gz[query]',
+ algorithm: 'zopfli',
})
);
}