Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

at d53cf66a7c485bc65a203dfd645442c65b48b58e 6 lines 165 B view raw
1import type { APIContext } from 'astro' 2import { generateRSS } from '@/utils/feed' 3 4export async function GET(context: APIContext) { 5 return generateRSS(context) 6}