1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// see https://cli.vuejs.org/config
const CompressionPlugin = require("compression-webpack-plugin");
const zopfli = require("@gfx/zopfli");
const zlib = require("zlib");
module.exports = {
//integrity: true, // enable SRI in script/style tags
parallel: true,
configureWebpack: {
plugins: process.env.NODE_ENV === "production" && Reflect.has(zlib, "brotliCompress") ? [
new CompressionPlugin({
filename: "[file].br[query]",
algorithm: "brotliCompress",
test: /\.(js|css|html|svg|ico|png|webp|ttf|woff|woff2)$/,
compressionOptions: { level: 11 },
minRatio: 0.9,
}),
new CompressionPlugin({
filename: "[file].gz[query]",
compressionOptions: {
numiterations: 15,
},
minRatio: 0.9,
algorithm (input, compressionOptions, callback) {
return zopfli.gzip(input, compressionOptions, callback);
},
}),
new CompressionPlugin({
filename: "[file].zopfli[query]",
compressionOptions: {
numiterations: 15,
},
minRatio: 0.9,
algorithm (input, compressionOptions, callback) {
return zopfli.gzip(input, compressionOptions, callback);
},
}),
]: [],
}
}
|