From 4e4930ef9c2e2ddb9bcb1436660d3a3002c19844 Mon Sep 17 00:00:00 2001
From: Anton Bulakh <him@necauq.ua>
Date: Fri, 24 Jan 2025 03:19:46 +0000
Subject: [PATCH] chore(styles): omit sass deprecation warnings (#1737)
---
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