Files
atridotdad/src/content/config.ts
Atridad Lahiji 84591f3a2d Initial commit
2023-04-20 04:20:00 -06:00

21 lines
497 B
TypeScript

import { defineCollection, z } from "astro:content";
const blog = defineCollection({
// Type-check frontmatter using a schema
schema: z.object({
title: z.string(),
description: z.string(),
// Transform string to Date object
pubDate: z
.string()
.or(z.date())
.transform((val) => new Date(val)),
updatedDate: z
.string()
.optional()
.transform((str) => (str ? new Date(str) : undefined)),
}),
});
export const collections = { blog };