2024-03-04 10:22:29 +01:00

14 lines
247 B
TypeScript

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