import htmlmin from "html-minifier-terser"; export default function (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: false, // Disabled because of clean-css' lack of nested CSS support minifyJS: true, minifyURLs: true, removeComments: true, useShortDoctype: true, }); } return content; }); }