What is Nuxt?
- The best framework
export default defineContentConfig({
collections: {
posts: defineCollection({
type: "page",
source: "posts/**",
schema: z.object({
date: z.string(),
tags: z.array(z.string()),
}),
}),
},
});