mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-11 09:30:59 +00:00
13 lines
319 B
JavaScript
13 lines
319 B
JavaScript
const htmlmin = require('html-minifier');
|
|
|
|
module.exports = function (content, outputPath) {
|
|
if (outputPath.endsWith('.html')) {
|
|
let minified = htmlmin.minify(content, {
|
|
useShortDoctype: true,
|
|
removeComments: true,
|
|
collapseWhitespace: true,
|
|
});
|
|
return minified;
|
|
}
|
|
return content;
|
|
};
|