2023-06-04 19:35:45 +03:00
|
|
|
import { QuartzConfig } from "./quartz/cfg"
|
2023-06-10 09:06:02 +03:00
|
|
|
import * as Component from "./quartz/components"
|
|
|
|
import * as Plugin from "./quartz/plugins"
|
2023-05-30 18:02:20 +03:00
|
|
|
|
2023-06-04 19:35:45 +03:00
|
|
|
const config: QuartzConfig = {
|
2023-05-30 18:02:20 +03:00
|
|
|
configuration: {
|
|
|
|
siteTitle: "🪴 Quartz 4.0",
|
|
|
|
enableSPA: true,
|
2023-06-01 00:01:23 +03:00
|
|
|
ignorePatterns: ["private", "templates"],
|
2023-06-02 00:35:31 +03:00
|
|
|
theme: {
|
|
|
|
typography: { // loaded from Google Fonts
|
|
|
|
header: "Schibsted Grotesk",
|
|
|
|
body: "Source Sans Pro",
|
|
|
|
code: "IBM Plex Mono",
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
lightMode: {
|
|
|
|
light: '#faf8f8',
|
|
|
|
lightgray: '#e8e8e8',
|
|
|
|
gray: '#dadada',
|
|
|
|
darkgray: '#4e4e4e',
|
|
|
|
dark: '#141021',
|
|
|
|
secondary: '#284b63',
|
|
|
|
tertiary: '#84a59d',
|
|
|
|
highlight: 'rgba(143, 159, 169, 0.15)',
|
|
|
|
},
|
|
|
|
darkMode: {
|
2023-06-17 05:41:59 +03:00
|
|
|
light: '#161618',
|
2023-06-02 00:35:31 +03:00
|
|
|
lightgray: '#292629',
|
|
|
|
gray: '#343434',
|
|
|
|
darkgray: '#d4d4d4',
|
|
|
|
dark: '#fbfffe',
|
|
|
|
secondary: '#7b97aa',
|
|
|
|
tertiary: '#84a59d',
|
|
|
|
highlight: 'rgba(143, 159, 169, 0.15)',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2023-05-30 18:02:20 +03:00
|
|
|
},
|
|
|
|
plugins: {
|
|
|
|
transformers: [
|
2023-06-12 09:26:43 +03:00
|
|
|
Plugin.FrontMatter(),
|
|
|
|
Plugin.Description(),
|
2023-06-17 05:41:59 +03:00
|
|
|
Plugin.TableOfContents(),
|
2023-06-12 09:26:43 +03:00
|
|
|
Plugin.CreatedModifiedDate({
|
2023-06-01 00:01:23 +03:00
|
|
|
priority: ['frontmatter', 'filesystem'] // you can add 'git' here for last modified from Git but this makes the build slower
|
|
|
|
}),
|
2023-06-12 09:26:43 +03:00
|
|
|
Plugin.GitHubFlavoredMarkdown(),
|
|
|
|
Plugin.ObsidianFlavoredMarkdown(),
|
|
|
|
Plugin.ResolveLinks(),
|
|
|
|
Plugin.SyntaxHighlighting(),
|
|
|
|
Plugin.Katex(),
|
2023-05-30 18:02:20 +03:00
|
|
|
],
|
|
|
|
filters: [
|
2023-06-12 09:26:43 +03:00
|
|
|
Plugin.RemoveDrafts()
|
2023-05-30 18:02:20 +03:00
|
|
|
],
|
|
|
|
emitters: [
|
2023-06-17 05:41:59 +03:00
|
|
|
Plugin.AliasRedirects(),
|
2023-06-12 09:26:43 +03:00
|
|
|
Plugin.ContentPage({
|
2023-06-12 09:46:38 +03:00
|
|
|
head: Component.Head(),
|
|
|
|
header: [Component.PageTitle(), Component.Spacer(), Component.Darkmode()],
|
2023-06-17 05:41:59 +03:00
|
|
|
body: [
|
|
|
|
Component.ArticleTitle(),
|
|
|
|
Component.ReadingTime(),
|
|
|
|
Component.TagList(),
|
|
|
|
Component.TableOfContents(),
|
|
|
|
Component.Content()
|
|
|
|
],
|
|
|
|
left: [],
|
|
|
|
right: [],
|
|
|
|
footer: []
|
|
|
|
}),
|
|
|
|
Plugin.ContentIndex(), // you can exclude this if you don't plan on using popovers, graph, or backlinks,
|
|
|
|
Plugin.CNAME({ domain: "yoursite.xyz" }) // set this to your final deployed domain
|
2023-05-30 18:02:20 +03:00
|
|
|
]
|
|
|
|
},
|
2023-06-04 19:35:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|