chore: html minify tweaks

This commit is contained in:
Cory Dransfeldt 2023-12-17 14:31:24 -08:00
parent 71eb915918
commit ab1ce8f77e
No known key found for this signature in database

View file

@ -1,14 +1,15 @@
const htmlmin = require('html-minifier-terser')
const isProduction = process.env.ELEVENTY_ENV === 'production'
module.exports = (eleventyConfig) => {
eleventyConfig.addTransform('html-minify', (content, path) => {
if (path && path.endsWith('.html') && isProduction) {
if (path && path.endsWith('.html')) {
return htmlmin.minify(content, {
collapseBooleanAttributes: true,
collapseWhitespace: true,
decodeEntities: true,
includeAutoGeneratedTags: false,
minifyCSS: true,
minifyJS: true,
removeComments: true,
})
}