fix: 修復 spec 收藏未定義提示 (#516)

This commit is contained in:
noeFly
2025-08-01 18:34:46 +08:00
committed by GitHub
parent b1f509a82f
commit b06f908b2b

View File

@@ -19,6 +19,10 @@ const postsCollection = defineCollection({
nextSlug: z.string().default(""),
}),
});
const specCollection = defineCollection({
schema: z.object({}),
});
export const collections = {
posts: postsCollection,
spec: specCollection,
};