pages/lib/transforms/minifyHtml.js
2024-10-04 18:45:51 +09:00

14 lines
320 B
JavaScript

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