Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jsartisan/a1c4b6a3640ebf9cdbd49aaa37686872 to your computer and use it in GitHub Desktop.
Save jsartisan/a1c4b6a3640ebf9cdbd49aaa37686872 to your computer and use it in GitHub Desktop.
Minifying HTML
// ..
const config = {
// ...
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html',
minify: {
collapseWhitespace: isDevelopment === false,
collapseInlineTagWhitespace: isDevelopment === false,
removeComments: isDevelopment === false,
removeRedundantAttributes: isDevelopment === false,
},
}),
// ...
};
module.exports = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment