Webpack plugin for ...
- .....
- .....
$ npm i --save xxx-webpack-pluginAdd 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