aboutsummaryrefslogtreecommitdiff
path: root/src/content/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/config.ts')
-rw-r--r--src/content/config.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/content/config.ts b/src/content/config.ts
deleted file mode 100644
index d0d1d70..0000000
--- a/src/content/config.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { defineCollection, z } from 'astro:content';
-
-const blogCollection = defineCollection({
- type: 'content',
- schema: z.object({
- title: z.string(),
- metaDescription: z.string(),
- publishedAt: z.date()
- })
-});
-
-export const collections = {
- 'blog': blogCollection
-};