14 lines
281 B
TypeScript
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(),
|
|
}),
|
|
}),
|
|
},
|
|
})
|