Skip to content

Commit

Permalink
Merge pull request #59 from chrismwilliams/fix-rss-link
Browse files Browse the repository at this point in the history
Prepend correct path to link prop
  • Loading branch information
Chris Williams authored Feb 28, 2023
2 parents 4fa03e8 + c828bbf commit 6678958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/rss.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const get = async () => {
title: post.data.title,
description: post.data.description,
pubDate: post.data.publishDate,
link: post.slug,
link: `posts/${post.slug}`,
})),
});
};

0 comments on commit 6678958

Please sign in to comment.