brotli gz压缩

 

const productionGzipExtensions = /\.(js|css|json|txt|html|ico|svg|ttf|woff2|woff)(\?.*)?$/i;


/********BR*******/

 

new CompressionPlugin({
test: productionGzipExtensions,
filename: '[path].br',
algorithm: 'brotliCompress',
compressionOptions: {
level: 11
},
threshold: 10240
})

 

/********GZ*******/

new CompressionPlugin({
test: productionGzipExtensions,
threshold: 10240
})

posted @ 2022-03-08 13:29  mrt_yy  阅读(31)  评论(0编辑  收藏  举报