24 lines
546 B
TypeScript
24 lines
546 B
TypeScript
import { z, defineCollection } from 'astro:content';
|
|
|
|
const post = defineCollection({
|
|
schema: z.object({
|
|
title: z.string(),
|
|
description: z.string().optional(),
|
|
image: z.string().optional(),
|
|
|
|
canonical: z.string().url().optional(),
|
|
|
|
publishDate: z.date().or(z.string()).optional(),
|
|
draft: z.boolean().optional(),
|
|
|
|
excerpt: z.string().optional(),
|
|
category: z.string().optional(),
|
|
tags: z.array(z.string()).optional(),
|
|
author: z.string().optional(),
|
|
}),
|
|
});
|
|
|
|
export const collections = {
|
|
post: post,
|
|
};
|