14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
import { defineCollection, z } from 'astro:content';
|
|
import { glob } from 'astro/loaders';
|
|
|
|
const posts = defineCollection({
|
|
loader: glob({ pattern: '**/*.md', base: './src/content/posts' }),
|
|
schema: z.object({
|
|
title: z.string(),
|
|
date: z.date(),
|
|
published: z.boolean().default(false),
|
|
}),
|
|
});
|
|
|
|
export const collections = { posts };
|