webpack-css-hash-inject
v1.0.3
Published
This plugin for webpack gets all bundled CSS chunks and injects them globally into window.__CSS_CHUNKS__
Downloads
2
Readme
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
iftrue
debug information will be logged (default:false
).warn
:true | false
iftrue
warnings will be logged (default:true
)