Skip to content

Commit 0b4b57f

Browse files
committed
hardcode rss link to fix error
1 parent e14c8db commit 0b4b57f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/feed/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function GET(req: NextRequest): Promise<NextResponse> {
2626
for (const post of data) {
2727
feed.addItem({
2828
title: post.title,
29-
link: `${req.nextUrl.origin}/blog/${post.path}`,
29+
link: `https://novatea.dev/blog/${post.path}`,
3030
date: post.publishedAt,
3131
author: [{ name: "Nova", email: "nova@novatea.dev", link: "https://novatea.dev/" }],
3232
description: post.blurb,

0 commit comments

Comments
 (0)