From 892ee8661a5001c08c6248b399c862428ec2605e Mon Sep 17 00:00:00 2001 From: cojocaru-david Date: Thu, 14 Aug 2025 03:26:55 +0300 Subject: [PATCH] chore: update sitemap URL in robots.txt for improved SEO compliance --- src/pages/robots.txt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/robots.txt.ts b/src/pages/robots.txt.ts index c46edb8..a7102c1 100644 --- a/src/pages/robots.txt.ts +++ b/src/pages/robots.txt.ts @@ -21,6 +21,6 @@ Sitemap: ${sitemapURL.href} ` export const GET: APIRoute = ({ site }) => { - const sitemapURL = new URL('sitemap-index.xml', site) + const sitemapURL = new URL('sitemap.xml', site) return new Response(getRobotsTxt(sitemapURL)) }