diff --git a/src/content/config.ts b/src/content/config.ts index a23f9c73..8bc07fe9 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -19,6 +19,10 @@ const postsCollection = defineCollection({ nextSlug: z.string().default(""), }), }); +const specCollection = defineCollection({ + schema: z.object({}), +}); export const collections = { posts: postsCollection, + spec: specCollection, };