mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { defineCollection } from '@nuxt/content'
|
|
|
|
export const collections = {
|
|
main: defineCollection({
|
|
type: 'page',
|
|
source: 'home/*.md'
|
|
})
|
|
}
|