15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
const htmlmin = require('html-minifier');
|
|
|
|
module.exports = function htmlMinTransform(value, outputPath) {
|
|
if (outputPath.indexOf('.html') > -1) {
|
|
let minified = htmlmin.minify(value, {
|
|
useShortDoctype: true,
|
|
removeComments: true,
|
|
collapseWhitespace: true,
|
|
minifyCSS: true
|
|
});
|
|
return minified;
|
|
}
|
|
return value;
|
|
};
|