chore: basic @nuxt/content setup

This commit is contained in:
2025-12-01 18:09:58 +01:00
parent 8f94f9ff48
commit 0fb8ecf4c6
7 changed files with 2013 additions and 62 deletions

10
content.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineContentConfig, defineCollection } from '@nuxt/content'
export default defineContentConfig({
collections: {
content: defineCollection({
type: 'page',
source: '**/*.md'
})
}
})