personal-site/content.config.ts

11 lines
250 B
TypeScript
Raw Normal View History

2025-02-16 19:31:39 -08:00
import { defineCollection, defineContentConfig } from "@nuxt/content";
export default defineContentConfig({
collections: {
content: defineCollection({
type: "page",
source: "**/**/**/*.md",
}),
},
});