Added homelab blog to rss

This commit is contained in:
Rolf Martin Glomsrud 2024-08-08 20:16:20 +02:00
parent 429e7ff3b0
commit 71dd878651
2 changed files with 6 additions and 2 deletions

View file

@ -5,6 +5,6 @@ import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://example.com',
site: 'https://polsevev.dev',
integrations: [mdx(), sitemap()],
});

View file

@ -4,6 +4,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
export async function GET(context) {
const posts = await getCollection('blog');
const homelab = await getCollection('homelab');
return rss({
title: SITE_TITLE,
description: SITE_DESCRIPTION,
@ -11,6 +12,9 @@ export async function GET(context) {
items: posts.map((post) => ({
...post.data,
link: `/blog/${post.slug}/`,
})),
})).concat(homelab.map((post) => ({
...post.data,
link: `/homelab/${post.slug}`
}))),
});
}