webpack-htmlinsert-plugin
v1.0.0
Published
``` npm install --save webpack-htmlInsert-plugin ```
Downloads
2
Readme
install
npm install --save webpack-htmlInsert-plugin
usage
in webpack.config.js
const htmlInsert = require('webpack-htmlInsert-plugin');
...
plugins: [
...
new wsp({
content: '<script>aaaa</script>',
fileList: ['public/index.html']
})
...
]