chore: minify html
This commit is contained in:
parent
554ce4dd01
commit
0114acdffb
2 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
import { createClient } from "@supabase/supabase-js";
|
||||
import { fetchDataByUrl, fetchGlobals } from "./utils/fetchers.js";
|
||||
import { minifyHTML } from "./utils/formatters.js";
|
||||
import {
|
||||
generateArtistHTML,
|
||||
generateBookHTML,
|
||||
|
@ -67,7 +68,7 @@ export default {
|
|||
const templateResponse = await fetch(`${BASE_URL}/dynamic`);
|
||||
const template = await templateResponse.text();
|
||||
const metadata = generateMetadata(data, type, globals);
|
||||
const html = updateDynamicContent(template, metadata, mediaHtml);
|
||||
const html = minifyHTML(updateDynamicContent(template, metadata, mediaHtml));
|
||||
const headers = new Headers({
|
||||
"Content-Type": "text/html",
|
||||
"Cache-Control":
|
||||
|
|
|
@ -17,4 +17,10 @@ md.use(markdownItAnchor, {
|
|||
safariReaderFix: true,
|
||||
}),
|
||||
});
|
||||
md.use(markdownItFootnote);
|
||||
md.use(markdownItFootnote);
|
||||
|
||||
export const minifyHTML = (html) =>
|
||||
html
|
||||
.replace(/\n\s+/g, "")
|
||||
.replace(/>\s+</g, "><")
|
||||
.replace(/<!--.*?-->/g, "");
|
||||
|
|
Reference in a new issue