diff options
Diffstat (limited to 'website/src/content.config.ts')
| -rw-r--r-- | website/src/content.config.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/website/src/content.config.ts b/website/src/content.config.ts new file mode 100644 index 0000000..5436030 --- /dev/null +++ b/website/src/content.config.ts @@ -0,0 +1,15 @@ +import { glob } from 'astro/loaders'; +import { defineCollection, z } from 'astro:content'; + +const blog = defineCollection({ + loader: glob({ pattern: '**/*.(md|mdx|html)', base: './src/content/blog' }), + schema: z.object({ + title: z.string(), + hidden: z.optional(z.boolean()), + description: z.string(), + pubDate: z.date(), + updatedDate: z.optional(z.date()), + }), +}); + +export const collections = { blog }; |
