Как удалить комментарии для бандлов next.js?
babelrc.
"comments": false,
next.config.js
webpack(config, options) {
config.optimization.minimizer[0] = new TerserPlugin({
terserOptions: {
output: { comments: false },
compress: {
drop_console: true,
},
}
})
return config
}
Вместо TerserPlugin пробовал uglify(аналогичная ситуация)