Awesome
html-webpack-insert-text-plugin
Insert text into the head or body of your HTML
Installation
You must be running webpack 4.
npm install --save-dev html-webpack-insert-text-plugin
Usage
Require the plugin in your webpack config
import HtmlWebpackInsertPlugin from 'html-webpack-insert-text-plugin';
// or
const HtmlWebpackInsertPlugin = require('html-webpack-insert-text-plugin')
.default;
Add the plugin to your webpack config as follows
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackInjectPlugin([
{
target: 'index.html',
parent: 'head',
text: 'body { background: red; }'
},
{
target: 'index.html',
parent: 'body',
text: '<script>alert('foo')</script>'
}
])
];
Structure
html-webpack-insert-text-plugin
takes an array of configuration objects. Those object should have the following structure.
target
(optional): name of HTML page to targetparent
: parent element to add into, only can behead
orbody
, default value ishead
text
: text to insert into theparent