personal-site/content.config.ts
mrrpnya edbce48613
Some checks failed
Publish to OCI / publish (push) Has been cancelled
beginning i18n support
2025-02-16 19:31:39 -08:00

10 lines
250 B
TypeScript

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