From 22e353c04c1d15805be93e6922b45e9372415d8f Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 6 Jul 2026 21:53:18 -0400 Subject: update astro --- src/content/config.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/content/config.ts (limited to 'src/content') diff --git a/src/content/config.ts b/src/content/config.ts deleted file mode 100644 index 8dd2162..0000000 --- a/src/content/config.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { defineCollection, z } from "astro:content"; -import { rssSchema } from '@astrojs/rss'; - -const blogCollection = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - description: z.string(), - pubDate: z.date(), - tags: z.array(z.string()), - }), -}); - -export const collections = { - blog: blogCollection, -}; -- cgit v1.2.3