From 5175dd06379bec629984d4a626ab53fa5768a10e Mon Sep 17 00:00:00 2001 From: Jared Schoeny Date: Wed, 29 Oct 2025 21:51:51 -1000 Subject: [PATCH] Fix bad sitemap urls --- src/app/sitemap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/sitemap.ts b/src/app/sitemap.ts index 1ce439e..728352b 100644 --- a/src/app/sitemap.ts +++ b/src/app/sitemap.ts @@ -20,6 +20,6 @@ export default async function Sitemap(): Promise { return routes.map((route) => ({ ...route, - url: `${process.env.NEXT_PUBLIC_SITE_URL!}/${route.url}`, + url: `${process.env.NEXT_PUBLIC_SITE_URL!}${route.url}`, })); }