fix(blog): check spelling

This commit is contained in:
Jewgeni Lewash 2024-03-04 10:22:29 +01:00
parent eff2466873
commit cf4d77ed4b

View File

@ -4,7 +4,7 @@ const blogCollection = defineCollection({
type: 'content', type: 'content',
schema: z.object({ schema: z.object({
title: z.string(), title: z.string(),
describtion: z.string(), description: z.string(),
}), }),
}); });