WebPack plugin to remove comments
npm install remove-comments-loaderremove-comments-loader - A tiny loader to remove comments in your code.``javascript``
module.exports = {
entry: "./test.js",
output: {
path: __dirname,
filename: "bundle.js"
},
module: {
preLoaders: [
{
test: /\.(js|css)$/,
loader: "remove-comments-loader"
}
]
}
}