From c90dbacab05d2ceab84b53c66c7be77b4dda47ef Mon Sep 17 00:00:00 2001
From: Anton Bulakh <him@necauq.ua>
Date: Tue, 07 Jan 2025 20:33:34 +0000
Subject: [PATCH] chore(build): separate markdown and html handling into two separate stages (#1675)
---
quartz/components/Head.tsx | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/quartz/components/Head.tsx b/quartz/components/Head.tsx
index f4c9d49..3a4db10 100644
--- a/quartz/components/Head.tsx
+++ b/quartz/components/Head.tsx
@@ -165,6 +165,7 @@
<link rel="stylesheet" href={googleFontHref(cfg.theme)} />
</>
)}
+ <link rel="preconnect" href="https://cdnjs.cloudflare.com" crossOrigin={"anonymous"} />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{/* OG/Twitter meta tags */}
<meta name="og:site_name" content={cfg.pageTitle}></meta>
@@ -181,8 +182,6 @@
<>
<meta property="og:image:width" content={fullOptions.width.toString()} />
<meta property="og:image:height" content={fullOptions.height.toString()} />
- <meta property="og:width" content={fullOptions.width.toString()} />
- <meta property="og:height" content={fullOptions.height.toString()} />
</>
)}
<meta property="og:image:url" content={ogImagePath} />
--
Gitblit v1.10.0