lucht/src/transforms/html-min.js
2021-09-02 22:06:00 -04:00

13 lines
No EOL
316 B
JavaScript

const htmlmin = require('html-minifier');
module.exports = (value, outputPath) => {
if (outputPath && outputPath.indexOf('.html') > -1) {
return htmlmin.minify(value, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
minifyCSS: true
});
}
return value;
}