diff --git a/src/content/config.ts b/src/content/config.ts deleted file mode 100644 index f72aa1c45..000000000 --- a/src/content/config.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { z, defineCollection } from "astro:content"; - -const blogPost = defineCollection({ - type: "content", - schema: z.object({ - title: z.string(), - date: z.date(), - extract: z.string().optional(), - authors: z.array(z.string()), - image: z.string().optional(), - imageAlt: z.string().optional() - }) -}) -const page = defineCollection({ - type: "content", - schema: z.object({ - title: z.string(), - description: z.string() - }) -}) \ No newline at end of file