Files
spark-store-abyss/content.config.ts

14 lines
294 B
TypeScript

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