import { minify } from 'html-minifier'; export const minifyHTML = (html) => minify(html, { removeAttributeQuotes: true, removeComments: true, minifyJS: true, minifyCSS: true, collapseWhitespace: true, collapseBooleanAttributes: true, })