quartz-research-note/quartz.config.ts

79 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-07-26 06:37:24 +00:00
import { QuartzConfig } from "./quartz/cfg"
2023-06-10 06:06:02 +00:00
import * as Plugin from "./quartz/plugins"
2023-05-30 15:02:20 +00:00
2023-07-26 06:37:24 +00:00
const config: QuartzConfig = {
configuration: {
pageTitle: "🪴 Quartz 4.0",
feat: Making Quartz available offline by making it a PWA (#465) * Adding PWA and chaching for offline aviability * renamed workbox config to fit Quartz' scheme * Documenting new configuration * Added missig umami documentation * Fixed formatting so the build passes, thank you prettier :) * specified caching strategies to improve performance * formatting... * fixing "404 manifest.json not found" on subdirectories by adding a / to manifestpath * turning it into a plugin * Removed Workbox-cli and updated @types/node * Added Serviceworkercode to offline.ts * formatting * Removing workbox from docs * applied suggestions * Removed path.join for sw path Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * Removed path.join for manifest path Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * Removing path module import * Added absolute path to manifests start_url and manifest "import" using baseUrl * Adding protocol to baseurl Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * Adding protocol to start_url too then * formatting... * Adding fallback page * Documenting offline plugin * formatting... * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * merge suggestion Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * formatting... * Fixing manifest path, all these nits hiding the actual issues .-. * Offline fallback page through plugins, most things taken from 404 Plugin * adding Offline Plugin to config * formatting... * Turned offline off as default and removed offline.md --------- Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
2023-09-20 18:38:13 +00:00
description: "Quartz Documentation Page and Demo",
2023-07-26 06:37:24 +00:00
enableSPA: true,
enablePopovers: true,
analytics: {
provider: "plausible",
2023-07-10 02:32:24 +00:00
},
2023-08-20 07:54:13 +00:00
baseUrl: "quartz.jzhao.xyz",
ignorePatterns: ["private", "templates", ".obsidian"],
2023-08-24 15:56:40 +00:00
defaultDateType: "created",
2023-07-26 06:37:24 +00:00
theme: {
typography: {
header: "Schibsted Grotesk",
body: "Source Sans Pro",
code: "IBM Plex Mono",
2023-07-10 02:32:24 +00:00
},
2023-07-26 06:37:24 +00:00
colors: {
lightMode: {
light: "#faf8f8",
lightgray: "#e5e5e5",
gray: "#b8b8b8",
darkgray: "#4e4e4e",
dark: "#2b2b2b",
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
},
darkMode: {
light: "#161618",
lightgray: "#393639",
gray: "#646464",
darkgray: "#d4d4d4",
dark: "#ebebec",
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
},
2023-07-10 02:32:24 +00:00
},
2023-07-23 00:27:41 +00:00
},
},
2023-05-30 15:02:20 +00:00
plugins: {
transformers: [
Plugin.FrontMatter(),
2023-06-17 02:41:59 +00:00
Plugin.TableOfContents(),
Plugin.CreatedModifiedDate({
priority: ["frontmatter", "filesystem"], // you can add 'git' here for last modified from Git but this makes the build slower
}),
2023-07-10 02:32:24 +00:00
Plugin.SyntaxHighlighting(),
2023-08-02 06:29:58 +00:00
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
2023-06-20 03:37:45 +00:00
Plugin.GitHubFlavoredMarkdown(),
2023-07-23 00:27:41 +00:00
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Latex({ renderEngine: "katex" }),
2023-06-20 03:37:45 +00:00
Plugin.Description(),
2023-05-30 15:02:20 +00:00
],
2023-07-23 00:27:41 +00:00
filters: [Plugin.RemoveDrafts()],
2023-05-30 15:02:20 +00:00
emitters: [
2023-06-17 02:41:59 +00:00
Plugin.AliasRedirects(),
2023-07-25 04:54:47 +00:00
Plugin.ComponentResources({ fontOrigin: "googleFonts" }),
2023-07-26 06:37:24 +00:00
Plugin.ContentPage(),
Plugin.FolderPage(),
Plugin.TagPage(),
2023-07-01 20:35:27 +00:00
Plugin.ContentIndex({
enableSiteMap: true,
enableRSS: true,
}),
Plugin.Assets(),
Plugin.Static(),
2023-09-07 04:02:21 +00:00
Plugin.NotFoundPage(),
2023-07-23 00:27:41 +00:00
],
2023-05-30 15:02:20 +00:00
},
2023-06-04 16:35:45 +00:00
}
export default config