wf4/content.config.ts
webfussel 91b59e4ebe add: basic blog layout
Basic Blog Layout to work on
2025-07-11 13:32:59 +02:00

29 lines
No EOL
602 B
TypeScript

import { defineContentConfig, defineCollection, z } from '@nuxt/content'
export default defineContentConfig({
collections: {
blog: defineCollection({
type: 'page',
source: 'blog/*.md',
schema: z.object({
excerpt: z.object({
type: z.string(),
children: z.any(),
}),
}),
}),
skills: defineCollection({
type: 'page',
source: 'snippets/skills/*.md',
}),
faq: defineCollection({
type: 'page',
source: 'snippets/faq/*.md',
schema: z.object({
rawbody: z.string(),
})
})
}
})