Zet - How do I use the terser webpack plugin?
How do I use the terser webpack plugin?
Install the package:
npm install terser-webpack-plugin --save-dev
Use in your config:
const TerserPlugin = require("terser-webpack-plugin");
module.exports = {
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
};
#webpack #terser