summaryrefslogtreecommitdiff
path: root/src/content/config.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+joeacarstairs@users.noreply.github.com>2025-01-06 21:49:17 +0000
committerGitHub <noreply@github.com>2025-01-06 21:49:17 +0000
commit9fb9e47e92049b72cdc7cbaa3e9d43ed1aacd095 (patch)
treea2069f3d255f8dddc0102afbc8283d79101045b7 /src/content/config.ts
parentf4875fd98fd502c19ca093e4bfeed386d174ed86 (diff)
parent7d377d5794e92d0d06d3db19d398bb6f81802b5f (diff)
Merge pull request #109 from joeacarstairs/staging
Update
Diffstat (limited to 'src/content/config.ts')
-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,
-};