aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2026-07-06 21:53:18 -0400
committerAndrew Lee <andrew@alee14.me>2026-07-06 21:53:18 -0400
commit22e353c04c1d15805be93e6922b45e9372415d8f (patch)
tree0ea19f99716b8f81b38ea1dcf96314096998433d /src/content
parent4300523e4e166b1ad2adc91f870f10a6c40c8a7c (diff)
downloadpersonal-website-22e353c04c1d15805be93e6922b45e9372415d8f.tar.gz
personal-website-22e353c04c1d15805be93e6922b45e9372415d8f.tar.bz2
personal-website-22e353c04c1d15805be93e6922b45e9372415d8f.zip
update astro
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,
-};