Nuxt 是什麼
- Nuxt,最好的框架。
export default defineContentConfig({
collections: {
posts: defineCollection({
type: "page",
source: "posts/**",
schema: z.object({
date: z.string(),
tags: z.array(z.string()),
}),
}),
},
});