116194326906978898
前言
Webpack通过TerserWebpackPlugin插件实现JS代码压缩
下载依赖
1
| npm install -D terser-webpack-plugin
|
修改配置文件
webpack.config.js1 2 3 4 5 6 7 8 9 10
| const TerserWebpackPlugin = require("terser-webpack-plugin");
module.exports = { mode: "production", optimization: { minimizer: [ new TerserWebpackPlugin() ] } };
|
完成