mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
const htmlmin = require('html-minifier');
|
|
|
|
module.exports = function htmlMinTransform(value, outputPath) {
|
|
if (outputPath.indexOf('.html') > -1) {
|
|
const minified = htmlmin.minify(value, {
|
|
useShortDoctype: true,
|
|
removeComments: true,
|
|
collapseWhitespace: true,
|
|
minifyCSS: true,
|
|
});
|
|
return minified;
|
|
}
|
|
return value;
|
|
};
|