Ver código fonte

Add brotli compression (#19025)

Yurii Izorkin 1 ano atrás
pai
commit
7972e5981c
1 arquivos alterados com 6 adições e 0 exclusões
  1. 6 0
      config/webpack/production.js

+ 6 - 0
config/webpack/production.js

@@ -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,