mirror of
https://github.com/valentineus/popov.link.git
synced 2025-10-15 06:00:24 +03:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
|
import { defineCollection, z } from "astro:content";
|
||
|
|
||
|
const blog = defineCollection({
|
||
|
type: "content",
|
||
|
schema: z.object({
|
||
|
author: z.string(),
|
||
|
description: z.string(),
|
||
|
pubDate: z.coerce.date(),
|
||
|
title: z.string(),
|
||
|
}),
|
||
|
});
|
||
|
|
||
|
export const collections = { blog };
|