my website, hosted on wisp.place
at main 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 };