export default defineContentConfig({
collections: {
content: defineCollection({
type: "page",
source: "**/*.md",
schema: z.object({
title: z.string(),
date: z.date(),
tagline: z.string(),
remoteURL: z.string(),
}),
}),
},
});
export default defineContentConfig({
collections: {
content: defineCollection({
type: "page",
source: "**/*.md",
schema: z.object({
title: z.string(),
date: z.date(),
tagline: z.string(),
remoteURL: z.string(),
}),
}),
},
});