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