An open API service indexing awesome lists of open source software.

https://github.com/baptistelambert/webpack-benny-hill-plugin

🎷 The most useful webpack plugin of all time.
https://github.com/baptistelambert/webpack-benny-hill-plugin

fun plugin webpack

Last synced: 2 months ago
JSON representation

🎷 The most useful webpack plugin of all time.

Awesome Lists containing this project

README

          

# 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
*/
]
};
```