html-minifier-webpack-plugin
TypeScript icon, indicating that this package has built-in type declarations

2.2.3 • Public • Published

HTMLMinifier Webpack Plugin

A Webpack plugin to minimize HTML files.

What does the plugin do?

It will search for HTML files during the Webpack build and will minimize the HTML with HTMLMinifier.

Configuration:

The plugin pass the configuration to HTMLMinifier, defaults to {}.

Example:

var HtmlMinifierPlugin = require('html-minifier-webpack-plugin');
module.exports = {
    module: {
        loaders: [
            { test: /\.html$/, loaders: ['file-loader?name=[name].html', 'extract-loader', 'html-loader'] }
        ]
    },
    plugins: [
        new HtmlMinifierPlugin({
            // HTMLMinifier options
        })
    ]
}

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Package Sidebar

Install

npm i html-minifier-webpack-plugin

Weekly Downloads

436

Version

2.2.3

License

MIT

Unpacked Size

5.91 kB

Total Files

9

Last publish

Collaborators

  • maxwellewxam