mirror of
https://github.com/withastro/astro.git
synced 2025-02-10 22:38:53 -05:00
448 B
448 B
astro |
---|
minor |
Allow Zod objects, unions, discriminated unions, intersections, and transform results as content collection schemas.
Migration
Astro requires a z.object(...)
wrapper on all content collection schemas. Update your content collections config like so:
// src/content/config.ts
import { z, defineCollection } from 'astro:content';
const blog = defineCollection({
- schema: {
+ schema: z.object({
...
})