19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
const htmlmin = require('html-minifier-terser')
|
|
|
|
module.exports = (eleventyConfig) => {
|
|
eleventyConfig.addTransform('html-minify', (content, path) => {
|
|
if (path && path.endsWith('.html')) {
|
|
return htmlmin.minify(content, {
|
|
collapseBooleanAttributes: true,
|
|
collapseWhitespace: true,
|
|
decodeEntities: true,
|
|
includeAutoGeneratedTags: false,
|
|
minifyCSS: true,
|
|
minifyJS: true,
|
|
removeComments: true,
|
|
processScripts: ['application/ld+json'], // minify JSON-LD scripts
|
|
})
|
|
}
|
|
return content
|
|
})
|
|
}
|