From 532f75bea033e8073c4c1bc1dff72fa6af7d5316 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 24 Dec 2024 09:26:32 +0000 Subject: Upgrades to Astro 5 --- website/src/content/config.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 website/src/content/config.ts (limited to 'website/src/content/config.ts') diff --git a/website/src/content/config.ts b/website/src/content/config.ts deleted file mode 100644 index dfdf403..0000000 --- a/website/src/content/config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { defineCollection, z } from 'astro:content'; - -const blog = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - hidden: z.optional(z.boolean()), - description: z.string(), - pubDate: z.date(), - updatedDate: z.optional(z.date()), - }), -}); - -export const collections = { blog }; -- cgit v1.2.3