From b06f908b2b2e34013ce73d014aa2073d33ee00dc Mon Sep 17 00:00:00 2001 From: noeFly Date: Fri, 1 Aug 2025 18:34:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=BE=A9=20spec=20=E6=94=B6?= =?UTF-8?q?=E8=97=8F=E6=9C=AA=E5=AE=9A=E7=BE=A9=E6=8F=90=E7=A4=BA=20(#516)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/content/config.ts b/src/content/config.ts index a23f9c7..8bc07fe 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, };