Files
portfolio/src/content.config.ts
2025-08-23 12:41:06 +02:00

17 lines
514 B
TypeScript

import { defineCollection, z } from 'astro:content';
import { glob } from 'astro/loaders';
const workshop = defineCollection({
loader: glob({ base: './src/content/workshop', pattern: '**/*.{md,mdx}' }),
schema: ({ image }) =>
z.object({
title: z.string(),
description: z.string(),
pubDate: z.coerce.date(),
updatedDate: z.coerce.date().optional(),
heroImage: image().optional(),
}),
});
export const collections = { workshop };