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