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 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,
-};