add history link to meta

This commit is contained in:
2024-02-08 23:52:15 +09:00
parent d5c71bd058
commit f8ef525a49
2 changed files with 43 additions and 17 deletions

View File

@@ -7,18 +7,18 @@ import { Theme } from "./util/theme"
export type Analytics =
| null
| {
provider: "plausible"
host?: string
}
provider: "plausible"
host?: string
}
| {
provider: "google"
tagId: string
}
provider: "google"
tagId: string
}
| {
provider: "umami"
websiteId: string
host?: string
}
provider: "umami"
websiteId: string
host?: string
}
export interface GlobalConfiguration {
pageTitle: string
@@ -35,6 +35,7 @@ export interface GlobalConfiguration {
/** Base URL to use for CNAME files, sitemaps, and RSS feeds that require an absolute URL.
* Quartz will avoid using this as much as possible and use relative URLs most of the time
*/
repoUrl?: string
baseUrl?: string
theme: Theme
/**