1.0.4 • Published 2 years ago

html-webpack-insert-text-plugin v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
2 years ago

html-webpack-insert-text-plugin

code style: prettier CircleCI npm npm

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 target
  • parent: parent element to add into, only can be head or body, default value is head
  • text: text to insert into the parent
1.0.4

2 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.0.1

5 years ago