Add brotli compression (#19025)
This commit is contained in:
parent
1e95fa3df5
commit
7972e5981c
@ -34,6 +34,12 @@ module.exports = merge(sharedConfig, {
|
|||||||
cache: true,
|
cache: true,
|
||||||
test: /\.(js|css|html|json|ico|svg|eot|otf|ttf|map)$/,
|
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
|
new BundleAnalyzerPlugin({ // generates report.html
|
||||||
analyzerMode: 'static',
|
analyzerMode: 'static',
|
||||||
openAnalyzer: false,
|
openAnalyzer: false,
|
||||||
|
Loading…
Reference in New Issue
Block a user