11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { defineCollection, z } from "astro:content"
|
|
|
|
export const collections = {
|
|
guides: defineCollection({
|
|
schema: z.object({
|
|
title: z.string(),
|
|
description: z.string(),
|
|
}),
|
|
}),
|
|
}
|