webpack-benny-hill-plugin
Version:
THE MOST USEFUL WEBPACK PLUGIN OF ALL TIME.
38 lines (28 loc) • 550 B
Markdown
# Webpack Benny Hill Plugin 🔥💯🎷
THE MOST USEFUL WEBPACK PLUGIN OF ALL TIME.
*This was made for fun just to see how webpack plugins could work.*
## Installation
npm
```
npm install --save-dev webpack-benny-hill-plugin
```
yarn
```
yarn add -D webpack-benny-hill-plugin
```
## Usage
**webpack.config.js**
```js
const BennyHillPlugin = require('webpack-benny-hill-plugin');
module.exports = {
/*
Rest of your webpack configuration
*/
plugins: [
new BennyHillPlugin(),
/*
Rest of your plugins
*/
]
};
```