Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/carrd-dot-me.
Something went wrong. Try again.
295 B · 12 lines
JavaScript
at main
12345678910111213import htmlmin from "html-minifier-next";
export function minifyHtml(content) { if ((this.page.outputPath || "").endsWith(".html")) { return htmlmin.minify(content, { useShortDoctype: true, removeComments: true, collapseWhitespace: true, }); } return content;}