Files
txarli.dev/src/pages/rss.xml.js
2022-12-19 06:49:28 -05:00

20 lines
502 B
JavaScript

import rss from "@astrojs/rss";
import { SITE_TITLE, SITE_DESCRIPTION } from "../config";
const posts = Object.values(import.meta.glob("../posts/*.md", { eager: true }));
export const get = () =>
rss({
title: SITE_TITLE,
description: SITE_DESCRIPTION,
site: import.meta.env.SITE,
items: posts.map((post) => {
return {
link: `/post/${post.frontmatter.slug}`,
title: post.frontmatter.title,
pubDate: post.frontmatter.added,
content: post.compiledContent(),
};
}),
});