blob: 2eccab0a37c754282e1ad4a86f6052ed50bf9fd6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineCollection, z } from 'astro:content';
const docs = defineCollection({
schema: z.object({
title: z.string(),
}),
});
export const collections = { docs };
|