This commit is contained in:
Barrett Ruth 2025-10-08 00:02:00 -04:00
parent 024226ef53
commit 81fca03582
5 changed files with 38 additions and 4 deletions

View file

@ -21,8 +21,17 @@ const gistsCollection = defineCollection({
}),
});
const gitsCollection = defineCollection({
type: "content",
schema: z.object({
title: z.string(),
date: z.string().optional(),
}),
});
export const collections = {
posts: postsCollection,
gists: gistsCollection,
gits: gitsCollection,
};