开启gzip压缩

This commit is contained in:
heartwarming 2020-12-11 10:35:01 +08:00
parent 33a93a12b4
commit 4184e404e1
2 changed files with 15 additions and 3 deletions

View File

@ -55,6 +55,7 @@
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "2.4.2",
"chokidar": "2.1.5",
"compression-webpack-plugin": "^3.1.0",
"connect": "3.6.6",
"eslint": "6.7.2",
"eslint-plugin-vue": "6.2.2",

View File

@ -1,7 +1,17 @@
'use strict'
const path = require('path')
const defaultSettings = require('./src/settings.js')
const webpackPlugins = []
if (process.env.NODE_ENV === 'production') {
const CompressionPlugin = require('compression-webpack-plugin')
webpackPlugins.push(new CompressionPlugin({
algorithm: 'gzip',
test: /\.js$|\.html$|\.css$|\.jpg$|\.jpeg$|\.png/, // 需要压缩的文件类型
threshold: 10240, // 归档需要进行压缩的文件大小最小值我这个是10K以上的进行压缩
deleteOriginalAssets: false, // 是否删除原文件
minRatio: 0.5
}))
}
function resolve(dir) {
return path.join(__dirname, dir)
}
@ -46,7 +56,8 @@ module.exports = {
alias: {
'@': resolve('src')
}
}
},
plugins: webpackPlugins
},
chainWebpack(config) {
// it can improve the speed of the first screen, it is recommended to turn on preload
@ -88,7 +99,7 @@ module.exports = {
.plugin('ScriptExtHtmlWebpackPlugin')
.after('html')
.use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime`
// `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/
}])
.end()