fix: update feed.xml to use /md/ URLs for posts

This commit is contained in:
Lewis Wynne 2026-01-23 19:23:58 +00:00
parent 6497f485e1
commit ccec4d274a

View file

@ -35,7 +35,7 @@ export async function GET(context: APIContext) {
...posts.map(post => ({ ...posts.map(post => ({
title: post.data.title, title: post.data.title,
pubDate: post.data.date, pubDate: post.data.date,
link: `/blog/${post.id}`, link: `/md/${post.id}`,
description: post.data.title, description: post.data.title,
})), })),
...txtFiles.map(txt => ({ ...txtFiles.map(txt => ({