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