<?xml version="1.0" encoding="UTF-8"?>
<!--
  Static alias for the conventional /sitemap.xml path (LOU-67).

  @astrojs/sitemap emits /sitemap-index.xml (+ /sitemap-0.xml), NOT the
  conventional /sitemap.xml — so tools and humans that probe /sitemap.xml hit
  the CloudFront 404 fallback even though Google/Bing discover the sitemap fine
  via robots.txt. This file mirrors the generated sitemap-index.xml: a
  <sitemapindex> pointing at the real <urlset> in sitemap-0.xml.

  The origin is hard-coded to the canonical domain to match public/robots.txt,
  which likewise advertises https://loungelist.co/sitemap-index.xml. Astro copies
  public/ verbatim, so this ships as dist/sitemap.xml without touching the
  @astrojs/sitemap output. Keep the <loc> in sync with @astrojs/sitemap's index
  entry (sitemap-0.xml); scripts/verify-seo.ts pins this.
-->
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <sitemap>
    <loc>https://loungelist.co/sitemap-0.xml</loc>
  </sitemap>
</sitemapindex>
