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', }) ); }