9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import { defineCollection } from '@nuxt/content'
|
|
|
|
export const collections = {
|
|
content: defineCollection({
|
|
source: '**/*.md',
|
|
type: 'page'
|
|
})
|
|
}
|