mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2025-04-05 06:11:13 +02:00
22 lines
502 B
TypeScript
22 lines
502 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)),
|
|
heroImage: z.string().optional(),
|
|
}),
|
|
});
|
|
|
|
export const collections = { blog };
|