Quartz sync: Jun 2, 2024, 6:55 PM

This commit is contained in:
Rami Maalouf 2024-06-02 18:55:23 -04:00
parent e067bbf287
commit cd175bd016
No known key found for this signature in database
3 changed files with 99 additions and 83 deletions

2
.gitignore vendored
View File

@ -9,3 +9,5 @@ tsconfig.tsbuildinfo
private/
.replit
replit.nix
.got/
.vscode/

View File

View File

@ -1,5 +1,5 @@
import { QuartzConfig } from "./quartz/cfg"
import * as Plugin from "./quartz/plugins"
import { QuartzConfig } from "./quartz/cfg";
import * as Plugin from "./quartz/plugins";
/**
* Quartz 4.0 Configuration
@ -15,8 +15,22 @@ const config: QuartzConfig = {
provider: "plausible",
},
locale: "en-US",
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian", "Hidden", "My Calendar", "My Social Circle", "USV", "My Goals", "My Projects", "My Files", "My Input Collections", "My Kanbans", "My Views"],
baseUrl: "",
ignorePatterns: [
"private",
"templates",
".obsidian",
"Hidden",
"My Calendar",
"My Social Circle",
"USV",
"My Goals",
"My Projects",
"My Files",
"My Input Collections",
"My Kanbans",
"My Views",
],
defaultDateType: "created",
theme: {
fontOrigin: "googleFonts",
@ -86,6 +100,6 @@ const config: QuartzConfig = {
Plugin.NotFoundPage(),
],
},
}
};
export default config
export default config;