webpack-remove-console
v0.0.1
Published
Webpack-remove-console plugin clears console by replacing console functions during bundling。
Downloads
13
Readme
webpack-remove-console
Webpack-remove-console plugin clears console by replacing console functions during bundling。
NOTE: Support Webpack4 and Webpack5
Installation
The plugin is available via npm:
npm install --save-dev webpack-remove-console
# or
yarn add -d webpack-remove-console
Usage
var WebpackRemoveConsole = require("webpack-remove-console");
module.exports = {
plugins: [
new WebpackRemoveConsole();
]
}