0.1.0 • Published 6 years ago

move-head-assets-to-body-webpack-plugin v0.1.0

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

move-head-assets-to-body-webpack-plugin

Webpack plugin to move assest from head to body

Usage

webpack.config.js :

module.exports = {
    ...
    plugins: {
        new MoveHeadAssetsToBodyWebpackPlugin({
            // defaults to false
            // if true place head assets after body assets 
            // if false place head assets before body assets
            append: false
        }),
        new htmlWebpackAlterAssetPlugin()
    }
    ...
}