auto-claude: subtask-3-3 - Fix robots.txt and sitemap configuration

- Remove outdated static public/sitemap.xml that conflicted with dynamic sitemap.ts
  (was missing leistungen pages, city pages, and had outdated blog/portfolio slugs)
- Fix robots.ts to reference only the single sitemap.xml instead of non-existent
  language-specific sitemaps (sitemap-de.xml, sitemap-en.xml, sitemap-sr.xml)
- Dynamic sitemap.ts now handles all pages with proper hreflang alternates

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-25 00:46:04 +01:00
co-authored by Claude Opus 4.5
parent 65df1bd559
commit a45e0f3aba
2 changed files with 1 additions and 496 deletions
+1 -6
View File
@@ -12,11 +12,6 @@ export default function robots(): MetadataRoute.Robots {
crawlDelay: 1,
},
],
sitemap: [
`${baseUrl}/sitemap.xml`,
`${baseUrl}/sitemap-de.xml`,
`${baseUrl}/sitemap-en.xml`,
`${baseUrl}/sitemap-sr.xml`,
],
sitemap: `${baseUrl}/sitemap.xml`,
};
}