Webpack plugin for ...
- .....
- .....
$ npm i --save xxx-webpack-plugin
Add new plugin instance to your webpack
config
import XxxPlugin from 'xxx-webpack-plugin';
const compiler = webpack({
// ...
plugins: [
new XxxPlugin()
]
});
The plugin accepts the following options:
- option1
- option2
- option3
MIT