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;
};