const htmlmin = require('html-minifier'); const isProduction = process.env.ELEVENTY_ENV === 'production'; const compressHTML = (content, outputPath) => { if (outputPath.endsWith('.html') && isProduction) { let minified = htmlmin.minify(content, { useShortDoctype: true, removeComments: true, collapseWhitespace: true, minifyCSS: true, minifyJS: true }); return minified; } return content; }; module.exports = { compressHTML };