This commit is contained in:
2026-03-30 11:09:22 +02:00
parent 9324e86763
commit f0076948fd
13 changed files with 3979 additions and 261 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineContentConfig, defineCollection, z } from '@nuxt/content'
export default defineContentConfig({
collections: {
legal: defineCollection({
type: 'page',
source: '**/*.md',
schema: z.object({
title: z.string(),
}),
}),
},
})