fix: add posts to rss.xml

This commit is contained in:
Sean McPherson
2022-12-19 06:49:28 -05:00
parent 2b5008fce9
commit cd303a03a6
4 changed files with 23 additions and 9 deletions

View File

@@ -1,10 +1,19 @@
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: import.meta.glob("./blog/**/*.md"),
items: posts.map((post) => {
return {
link: `/post/${post.frontmatter.slug}`,
title: post.frontmatter.title,
pubDate: post.frontmatter.added,
content: post.compiledContent(),
};
}),
});