Merge branch 'master' into redPackets
This commit is contained in:
commit
2ab3c64110
|
@ -592,14 +592,15 @@ module.exports = function (webpackEnv) {
|
|||
]
|
||||
},
|
||||
plugins: [
|
||||
new CompressionPlugin({
|
||||
filename: '[path].gz[query]', // 目标资源名称。[file] 会被替换成原资源。[path] 会被替换成原资源路径,[query] 替换成原查询字符串
|
||||
algorithm: 'gzip', // 算法
|
||||
test: new RegExp('\\.(js|css)$'), // 压缩 js 与 css
|
||||
threshold: 1024, // 只处理比这个值大的资源。按字节计算
|
||||
minRatio: 0.8, // 只有压缩率比这个值小的资源才会被处理
|
||||
deleteOriginalAssets: true
|
||||
}),
|
||||
process.env.NODE_ENV !== 'development' &&
|
||||
new CompressionPlugin({
|
||||
filename: '[path].gz[query]', // 目标资源名称。[file] 会被替换成原资源。[path] 会被替换成原资源路径,[query] 替换成原查询字符串
|
||||
algorithm: 'gzip', // 算法
|
||||
test: new RegExp('\\.(js|css)$'), // 压缩 js 与 css
|
||||
threshold: 1024, // 只处理比这个值大的资源。按字节计算
|
||||
minRatio: 0.8, // 只有压缩率比这个值小的资源才会被处理
|
||||
deleteOriginalAssets: true
|
||||
}),
|
||||
// Generates an `index.html` file with the <script> injected.
|
||||
new HtmlWebpackPlugin(
|
||||
Object.assign(
|
||||
|
|
Loading…
Reference in New Issue