9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import { defineCollection, z } from 'astro:content';
|
|
import { rssSchema } from '@astrojs/rss';
|
|
|
|
const blog = defineCollection({
|
|
// Type-check frontmatter using a schema
|
|
schema: rssSchema
|
|
});
|
|
|
|
export const collections = { blog };
|