toastie-site/src/content/config.ts
2024-11-27 10:10:42 +13:00

8 lines
No EOL
187 B
TypeScript

import { defineCollection } from 'astro:content';
import { rssSchema } from '@astrojs/rss';
const blog = defineCollection({
schema: rssSchema,
});
export const collections = { blog };