pages/lib/transforms/minifyHtml.js
2023-04-02 17:31:07 +09:00

14 lines
325 B
JavaScript

const htmlmin = require('html-minifier');
module.exports = (content, outputPath) => {
if (process.env.NODE_ENV === 'production' && outputPath.endsWith('.html')) {
return htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true
});
}
return content;
};