From 40b0fb8e08a42942ef5451a632efab57629609b0 Mon Sep 17 00:00:00 2001 From: HangerThem Date: Mon, 3 Aug 2026 16:13:02 +0200 Subject: [PATCH] Try and fix the og image pointing to localhost --- app/feed.xml/route.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/feed.xml/route.ts b/app/feed.xml/route.ts index 01bef87..e797839 100644 --- a/app/feed.xml/route.ts +++ b/app/feed.xml/route.ts @@ -1,9 +1,9 @@ import { metadata } from '@/app/metadata' import { getAllPostsMeta } from '@/lib/posts' -export const dynamic = "force-static" +export const dynamic = 'force-static' -const SITE_URL = process.env.SITE_URL || 'http://localhost:3000' +const SITE_URL = process.env.SITE_URL function escapeXml(str: string) { return str