From 082fdf2e8098ef6bcb46a7dfabf8c6b9fd096346 Mon Sep 17 00:00:00 2001
From: Jeremy Press <jeremypress1@gmail.com>
Date: Mon, 28 Aug 2023 03:57:19 +0000
Subject: [PATCH] Fix typo :) (#430)

---
 quartz/cfg.ts |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/quartz/cfg.ts b/quartz/cfg.ts
index 3c9613b..21e0301 100644
--- a/quartz/cfg.ts
+++ b/quartz/cfg.ts
@@ -1,6 +1,7 @@
+import { ValidDateType } from "./components/Date"
 import { QuartzComponent } from "./components/types"
 import { PluginTypes } from "./plugins/types"
-import { Theme } from "./theme"
+import { Theme } from "./util/theme"
 
 export type Analytics =
   | null
@@ -22,6 +23,8 @@
   analytics: Analytics
   /** Glob patterns to not search */
   ignorePatterns: string[]
+  /** Whether to use created, modified, or published as the default type of date */
+  defaultDateType: ValidDateType
   /** 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
    */

--
Gitblit v1.10.0