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