Files
website-11ty-hamburg.stefan…/src/utils/minify-html.js
2022-08-24 10:15:43 +02:00

16 lines
303 B
JavaScript

const htmlmin = require('html-minifier');
module.exports = function (content, outputPath) {
if (outputPath.endsWith('.html')) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
});
return minified;
}
return content;
};