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 6af4686e35e58f2bcfda81f2da07f162ebaf686e 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}