first commit

This commit is contained in:
2026-02-18 14:07:18 +01:00
commit c48218e225
20 changed files with 10641 additions and 0 deletions

11
src/content/config.ts Normal file
View File

@@ -0,0 +1,11 @@
// @ts-ignore
import { defineCollection, z } from 'astro:content';
const posts = defineCollection({
// Type-check frontmatter using a schema
schema: z.object({
title: z.string(),
}),
});
export const collections = { posts };