aboutsummaryrefslogtreecommitdiff
path: root/src/content/config.ts
blob: 245f20e526c2fa9b488a3074149771d3b7183034 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineCollection, z } from "astro:content";

const blog = defineCollection({
	type: "content",
	schema: z.object({
		author: z.string(),
		description: z.string(),
		draft: z.optional(z.boolean()),
		pubDate: z.coerce.date(),
		title: z.string(),
	}),
});

export const collections = { blog };