30 lines
No EOL
631 B
TypeScript
30 lines
No EOL
631 B
TypeScript
import { defineContentConfig, defineCollection, z } from '@nuxt/content'
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
blog: defineCollection({
|
|
type: 'page',
|
|
source: 'blog/*.md',
|
|
schema: z.object({
|
|
date: z.string(),
|
|
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(),
|
|
}),
|
|
}),
|
|
},
|
|
}) |