djLint/docs/src/_utils/minify-html.js
Christopher Pickering 6465f709d1
reformatted
2022-01-24 09:03:25 -06:00

13 lines
319 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;
};