From 8eec47c340d48d9b45970a88da0aaff4e216a7e2 Mon Sep 17 00:00:00 2001
From: kabirgh <15871468+kabirgh@users.noreply.github.com>
Date: Mon, 15 Jan 2024 16:39:16 +0000
Subject: [PATCH] fix: rebuild errors on windows (#692)

---
 quartz/components/Head.tsx |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/quartz/components/Head.tsx b/quartz/components/Head.tsx
index 972f749..2bf2638 100644
--- a/quartz/components/Head.tsx
+++ b/quartz/components/Head.tsx
@@ -14,8 +14,6 @@
 
     const iconPath = joinSegments(baseDir, "static/icon.png")
     const ogImagePath = `https://${cfg.baseUrl}/static/og-image.png`
-    const manifest =
-      cfg.baseUrl == undefined ? "/manifest.json" : `https://${cfg.baseUrl}/manifest.json`
 
     return (
       <head>
@@ -27,9 +25,7 @@
         {cfg.baseUrl && <meta property="og:image" content={ogImagePath} />}
         <meta property="og:width" content="1200" />
         <meta property="og:height" content="675" />
-        <meta name="theme-color" content="#faf8f8" />
         <link rel="icon" href={iconPath} />
-        <link rel="manifest" href={manifest} />
         <meta name="description" content={description} />
         <meta name="generator" content="Quartz" />
         <link rel="preconnect" href="https://fonts.googleapis.com" />

--
Gitblit v1.10.0