Added homelab blog to rss
This commit is contained in:
parent
429e7ff3b0
commit
71dd878651
2 changed files with 6 additions and 2 deletions
|
@ -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()],
|
||||
});
|
||||
|
|
|
@ -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}`
|
||||
}))),
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue