Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 755 Bytes

README.md

File metadata and controls

executable file
·
33 lines (24 loc) · 755 Bytes

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)