diff --git a/webpack.config.js b/webpack.config.js index afc7b923..9fbec641 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -26,6 +26,19 @@ module.exports = { }, ], }, + + optimization: { + minimizer: [new TerserPlugin({ + extractComments: false, + // terserOptions: { + // format: { + // comments: false, + // }, + // }, + })], + }, + + output: { filename: "[name].bundle.js", path: path.resolve(__dirname, "assets/built"),