13 lines
No EOL
316 B
JavaScript
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;
|
|
} |