2024-03-03 15:26:26 +01:00

13 lines
220 B
TypeScript

import { z, defineCollection } from 'astro:content';
const blogCollection = defineCollection({
type: 'content',
schema: z.object({
title: z.string(),
}),
});
export const collections = {
blog: blogCollection,
};