Skip to content

Commit e1d3af2

Browse files
authored
Merge pull request #1955 from max0x53/compress
Webpack compress with gzip and brotli
2 parents 9d014ae + 3042660 commit e1d3af2

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

package-lock.json

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"chromedriver": "^130.0.0",
5959
"cli-progress": "^3.12.0",
6060
"colors": "^1.4.0",
61+
"compression-webpack-plugin": "^11.1.0",
6162
"copy-webpack-plugin": "^12.0.2",
6263
"core-js": "^3.37.1",
6364
"css-loader": "7.1.2",

webpack.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
const webpack = require("webpack");
22
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
3+
const CompressionPlugin = require("compression-webpack-plugin");
34
const CopyWebpackPlugin = require("copy-webpack-plugin");
45
const { ModifySourcePlugin, ReplaceOperation } = require("modify-source-webpack-plugin");
56
const path = require("path");
7+
const zlib = require("zlib");
68

79
/**
810
* Webpack configuration details for use with Grunt.
@@ -64,6 +66,21 @@ module.exports = {
6466
new MiniCssExtractPlugin({
6567
filename: "assets/[name].css"
6668
}),
69+
new CompressionPlugin({
70+
filename: "[path][base].gz",
71+
algorithm: "gzip",
72+
test: /\.(js|css|html)$/,
73+
}),
74+
new CompressionPlugin({
75+
filename: "[path][base].br",
76+
algorithm: "brotliCompress",
77+
test: /\.(js|css|html)$/,
78+
compressionOptions: {
79+
params: {
80+
[zlib.constants.BROTLI_PARAM_QUALITY]: 11,
81+
},
82+
},
83+
}),
6784
new CopyWebpackPlugin({
6885
patterns: [
6986
{

0 commit comments

Comments
 (0)