0%

webpack中的代码压缩

本文介绍了webpack中JS、HTML、CSS进行代码压缩的方式。

JS

设置 modeproduction 配置后,webpack v4+ 默认会压缩你的代码。生产环境下默认使用 UglifyJSPlugin

所以无需手动配置压缩选项。

HTML

压缩HTML可以使用插件html-webpack-plugin,并配置相关参数进行使用,这里给出一个例子:

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// webpack.config.js
const path = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {
mode: 'production',
entry: {
index: './src/index.js',
search: './src/index2.jsx'
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].[chunkhash:8].js'
},
module: {
rules: [
{
test: /\.jsx?$/,
use: 'babel-loader'
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, 'css-loader']
},
{
test: /\.less$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader']
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: 'img/[name].[hash:8].[ext]'
}
}
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].[contenthash:8].css'
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, './src/index.html'), // 使用的模板
filename: 'idnex.html', // 生成的文件名
chunks: ['index'], // 生成的html使用的chunk
inject: true, // 设置为true时,使用到的chunk,css会自动注入到html中
minify: {
html5: true,
minifyCSS: true, // 压缩内联CSS
minifyJS: true, // 压缩内联JS
removeComments: true, // 移除注释
collapseWhitespace: true, // 删除空格、换行等空白符
preserveLineBreaks: false, // 保留换行
}
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, './src/search.html'), // 使用的模板
filename: 'search.html', // 生成的文件名
chunks: ['search'], // 生成的html使用的chunk
inject: true, // 设置为true时,使用到的chunk,css会自动注入到html中
minify: {
html5: true,
minifyCSS: true, // 压缩内联CSS
minifyJS: true, // 压缩内联JS
removeComments: true, // 移除注释
collapseWhitespace: true, // 删除空格、换行等空白符
preserveLineBreaks: false, // 保留换行
}
})
]
}

压缩前:


压缩后:

CSS

压缩CSS代码,可通过optimize-css-assets-webpack-plugin插件完成。

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// webpack.config.js

const path = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const OptimizeCssAssetsWebpackPlugin = require('optimize-css-assets-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {
mode: 'production',
entry: {
index: './src/index.js',
search: './src/index2.jsx'
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].[chunkhash:8].js'
},
module: {
rules: [
{
test: /\.jsx?$/,
use: 'babel-loader'
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, 'css-loader']
},
{
test: /\.less$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader']
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: 'img/[name].[hash:8].[ext]'
}
}
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].[contenthash:8].css'
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, './src/index.html'), // 使用的模板
filename: 'index.html', // 生成的文件名
chunks: ['index'], // 生成的html使用的chunk
inject: true, // 设置为true时,使用到的chunk,css会自动注入到html中
minify: {
html5: true,
minifyCSS: true, // 压缩内联CSS
minifyJS: true, // 压缩内联JS
removeComments: true, // 移除注释
collapseWhitespace: true, // 删除空格、换行等空白符
preserveLineBreaks: false, // 保留换行
}
}),
new HtmlWebpackPlugin({
template: path.join(__dirname, './src/search.html'), // 使用的模板
filename: 'search.html', // 生成的文件名
chunks: ['search'], // 生成的html使用的chunk
inject: true, // 设置为true时,使用到的chunk,css会自动注入到html中
minify: {
html5: true,
minifyCSS: true, // 压缩内联CSS
minifyJS: true, // 压缩内联JS
removeComments: true, // 移除注释
collapseWhitespace: true, // 删除空格、换行等空白符
preserveLineBreaks: false, // 保留换行
}
}),
new OptimizeCssAssetsWebpackPlugin({
assetNameRegExp: /\.css$/g, // 需要压缩的文件名的正则表达式
cssProcessor: require('cssnano') // 使用的压缩处理器
})
]
}

压缩前:


压缩后:

总结

webpack中对于代码压缩还是比较简单的,只要配置一些插件就能够实现了,因此上手难度并不大。