From 6d350500f1bdadc9604ece5980dafa02150dd849 Mon Sep 17 00:00:00 2001
From: Anton Bulakh <him@necauq.ua>
Date: Thu, 27 Feb 2025 21:35:19 +0000
Subject: [PATCH] fix(goatcounter): properly count SPA page hits (#1718)
---
quartz.layout.ts | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/quartz.layout.ts b/quartz.layout.ts
index b5a1639..f45da0c 100644
--- a/quartz.layout.ts
+++ b/quartz.layout.ts
@@ -5,6 +5,7 @@
export const sharedPageComponents: SharedLayout = {
head: Component.Head(),
header: [],
+ afterBody: [],
footer: Component.Footer({
links: {
GitHub: "https://github.com/jackyzha0/quartz",
@@ -26,7 +27,7 @@
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
- Component.DesktopOnly(Component.Explorer()),
+ Component.Explorer(),
],
right: [
Component.Graph(),
@@ -43,7 +44,7 @@
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.Darkmode(),
- Component.DesktopOnly(Component.Explorer()),
+ Component.Explorer(),
],
right: [],
}
--
Gitblit v1.10.0