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