aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/config.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/content/config.ts b/src/content/config.ts
deleted file mode 100644
index 4277edc..0000000
--- a/src/content/config.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { defineCollection, z } from "astro:content";
-
-const blog = defineCollection({
- type: "content",
- schema: z.object({
- basedOn: z.optional(z.string()),
- dateModified: z.coerce.date(),
- datePublished: z.coerce.date(),
- description: z.string(),
- draft: z.optional(z.boolean()),
- lang: z.string(),
- title: z.string(),
- }),
-});
-
-export const collections = { blog };