We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 536ffe9 commit 43adfcdCopy full SHA for 43adfcd
src/content/config.ts
@@ -7,8 +7,11 @@ const blog = defineCollection({
7
description: z.string(),
8
pubDate: z.date(),
9
updatedpubDate: z.date().optional(),
10
+ categories: z.array(z.string()).default(["others"]),
11
+ authors: z.string()
12
+ tags: z.string[];
13
coverImageCredit: z.string().optional(),
14
}),
15
})
16
-export const collections = { blog }
17
+export const collections = { apps }
0 commit comments