my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4a8d3f176971d2b545dfb39e74d4eaffc75d4438 11 lines 270 B view raw
1import { defineCollection, z } from "astro:content"; 2import { rssSchema } from "@astrojs/rss"; 3 4const blog = defineCollection({ 5 schema: rssSchema.extend({ 6 image: z.string().optional(), 7 imageAlt: z.string().optional(), 8 }), 9}); 10 11export const collections = { blog };