aboutsummaryrefslogtreecommitdiff
path: root/src/content.config.ts
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-04-11 16:20:14 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-04-11 16:20:14 +0200
commit56f6a63ff90d6ad648b99c2d0eea7dd4cd6f888a (patch)
treeed034997ae42af8be75a4c0fb26e77c241d976cc /src/content.config.ts
parente3141794b95e534656427fadf0354435c62254d6 (diff)
Use MDX instead of markdown
Diffstat (limited to 'src/content.config.ts')
-rw-r--r--src/content.config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.config.ts b/src/content.config.ts
index 999e4af..3d69039 100644
--- a/src/content.config.ts
+++ b/src/content.config.ts
@@ -5,7 +5,7 @@ const blog = defineCollection({
loader: glob({ pattern: "**/*.{md,mdx}", base: "src/data/blog" }),
schema: z.object({
title: z.string(),
- metaDescription: z.string(),
+ description: z.string(),
publishedAt: z.coerce.date(),
}),
});