1
0
Fork 1
forked from fedi/mastodon

Add brotli compression (#19025)

This commit is contained in:
Yurii Izorkin 2022-12-15 19:07:36 +03:00 committed by talon
parent edae53ce66
commit 66326ee7bb

View file

@ -34,6 +34,12 @@ module.exports = merge(sharedConfig, {
cache: true,
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
}),
new CompressionPlugin({
filename: '[path][base].br[query]',
algorithm: 'brotliCompress',
cache: true,
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
}),
new BundleAnalyzerPlugin({ // generates report.html
analyzerMode: 'static',
openAnalyzer: false,