0.0.1 • Published 4 years ago

webpack-remove-console v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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();
  ]
}
0.0.1

4 years ago