1.0.3 • Published 6 years ago

webpack-css-hash-inject v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Getting started 🚀

# install via npm:
npm i webpack-flush-chunks-html --save-dev
# or use yarn:
yarn add webpack-flush-chunks-html -D
const WebpackFlushChunksPlugin = require('webpack-flush-chunks-html')

plugins: [
    // use before all CRA html plugins
	new WebpackFlushChunksPlugin({
		/* options (see below) */
	})
]

Options 🔧

You can pass following options to the plugin:

  • extensions: The file extensions to be included (default: ['css']).
  • excludedChunks: chunks to be excluded (default: ['main']).
  • variable: In case you want to append the files to a different variable (default: __CSS_CHUNKS__).
  • inject: 'head' | 'body' Where to inject the <script></script> in the html (default: body). But can also be another HTML element, a warning will be thrown though.
  • log: true | false if true debug information will be logged (default: false).
  • warn: true | false if true warnings will be logged (default: true)