summaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/config.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/content/config.ts b/src/content/config.ts
deleted file mode 100644
index 599c570..0000000
--- a/src/content/config.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { defineCollection, z } from 'astro:content';
-
-const news = defineCollection({
- type: 'content',
- schema: z.object({
- title: z.string(),
- summary: z.string(),
- }),
-});
-
-export const collections = {
- news: news,
-};