From 9d7c070deaeae3891053a4f5ecea67c9de20a91d Mon Sep 17 00:00:00 2001 From: Derek Brown Date: Mon, 3 Feb 2025 21:13:27 -0600 Subject: [PATCH] Update styles --- src/content/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/config.js b/src/content/config.js index ac37367..1895343 100644 --- a/src/content/config.js +++ b/src/content/config.js @@ -5,7 +5,7 @@ const noteCollection = defineCollection({ loader: glob({ pattern: '**/*.(md|mdx)', base: './src/content/notes' }), schema: z.object({ title: z.string(), - pubDate: z.datetime(), + pubDate: z.string(), tags: z.array(z.string()), }) })