Files
zhaoguiyang.site/src/pages/rss.xml.js
2025-04-07 15:50:13 -06:00

11 lines
467 B
JavaScript

import rss, { pagesGlobToRssItems } from '@astrojs/rss';
export async function GET(context) {
return rss({
title: 'Web Development and Technology Blog | Fernando López | EFEELE',
description: 'Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends.',
site: context.site,
items: await pagesGlobToRssItems(import.meta.glob('./**/*.md')),
customData: `<language>es</language>`,
});
}