11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import { defineContentConfig, defineCollection } from '@nuxt/content'
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
content: defineCollection({
|
|
type: 'page',
|
|
source: '**/*.md',
|
|
}),
|
|
},
|
|
})
|