lucht/src/transforms/html-min.js

13 lines
316 B
JavaScript
Raw Normal View History

2021-09-03 02:06:00 +00:00
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;
}