From 4e2aea8a5a414b3bcfac0168bea4f6afd032e8f5 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 26 Aug 2024 21:12:45 +0000
Subject: [PATCH] chore(deps): bump @napi-rs/simple-git from 0.1.17 to 0.1.19 (#1376)
---
quartz/cfg.ts | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/quartz/cfg.ts b/quartz/cfg.ts
index 09905e9..0c344d3 100644
--- a/quartz/cfg.ts
+++ b/quartz/cfg.ts
@@ -30,6 +30,14 @@
apiKey: string
host?: string
}
+ | {
+ provider: "tinylytics"
+ siteId: string
+ }
+ | {
+ provider: "cabin"
+ host?: string
+ }
export interface GlobalConfiguration {
pageTitle: string
@@ -69,10 +77,11 @@
header: QuartzComponent[]
beforeBody: QuartzComponent[]
pageBody: QuartzComponent
+ afterBody: QuartzComponent[]
left: QuartzComponent[]
right: QuartzComponent[]
footer: QuartzComponent
}
export type PageLayout = Pick<FullPageLayout, "beforeBody" | "left" | "right">
-export type SharedLayout = Pick<FullPageLayout, "head" | "header" | "footer">
+export type SharedLayout = Pick<FullPageLayout, "head" | "header" | "footer" | "afterBody">
--
Gitblit v1.10.0