Files
2026-03-30 11:09:22 +02:00

14 lines
281 B
TypeScript

import { defineContentConfig, defineCollection, z } from '@nuxt/content'
export default defineContentConfig({
collections: {
legal: defineCollection({
type: 'page',
source: '**/*.md',
schema: z.object({
title: z.string(),
}),
}),
},
})