aboutsummaryrefslogtreecommitdiff
path: root/src/content/config.ts
diff options
context:
space:
mode:
authorAriel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>2024-08-21 10:10:38 +0200
committerGitHub <noreply@github.com>2024-08-21 10:10:38 +0200
commitdd23cbd8a1caf00f0b842aff514d2907d545a403 (patch)
tree8fe6ba45871480f4fd352e567cae0b66ca4ccd04 /src/content/config.ts
parent553f8739ebd00110f649ce10440f1029766725a7 (diff)
Bring back the blog
Diffstat (limited to 'src/content/config.ts')
-rw-r--r--src/content/config.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/content/config.ts b/src/content/config.ts
new file mode 100644
index 0000000..d0d1d70
--- /dev/null
+++ b/src/content/config.ts
@@ -0,0 +1,14 @@
+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
+};