chore: update sitemap URL in robots.txt for improved SEO compliance

This commit is contained in:
cojocaru-david
2025-08-14 03:26:55 +03:00
parent 865b182062
commit 892ee8661a

View File

@@ -21,6 +21,6 @@ Sitemap: ${sitemapURL.href}
` `
export const GET: APIRoute = ({ site }) => { 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)) return new Response(getRobotsTxt(sitemapURL))
} }