From 1f032f538b4ce9f477b92be2da68d50606802c6d Mon Sep 17 00:00:00 2001
From: kwyuan <72662648+joeyscave@users.noreply.github.com>
Date: Tue, 09 Apr 2024 01:43:09 +0000
Subject: [PATCH] feat(analytics): PostHog support (#1072)

---
 quartz/cfg.ts |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/quartz/cfg.ts b/quartz/cfg.ts
index a477db0..09905e9 100644
--- a/quartz/cfg.ts
+++ b/quartz/cfg.ts
@@ -19,6 +19,17 @@
       websiteId: string
       host?: string
     }
+  | {
+      provider: "goatcounter"
+      websiteId: string
+      host?: string
+      scriptSrc?: string
+    }
+  | {
+      provider: "posthog"
+      apiKey: string
+      host?: string
+    }
 
 export interface GlobalConfiguration {
   pageTitle: string

--
Gitblit v1.10.0