blob: ff473d4af5bee68ae7505be3914091aef64bf0b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineCollection, z } from 'astro:content';
const blog = defineCollection({
schema: z.object({
title: z.string().transform(v => 'Processed by schema: ' + v),
}),
});
export const collections = { blog }
|