XML Sitemap
An XML file that lists important URLs on your site along with metadata like last modification date and change frequency. XML sitemaps help search engines discover and prioritize pages for crawling, especially on large or complex sites.
XML sitemaps serve as a roadmap for search engine crawlers, explicitly listing which pages you want indexed and providing hints about their relative importance and update frequency. While search engines discover pages through crawling links, sitemaps ensure important pages are found even if they have poor internal linking.
For growth teams running content-heavy or programmatically generated sites, sitemaps are essential infrastructure. Generate sitemaps dynamically to include only indexable, canonical pages. Split large sitemaps into index files with individual sitemaps of up to 50,000 URLs each. Include lastmod dates that reflect actual content changes (not just template updates) to help search engines prioritize fresh crawls. Submit sitemaps through Google Search Console and reference them in your robots.txt. Next.js and other modern frameworks can generate sitemaps at build time or on-demand. Monitor sitemap coverage in Search Console to identify discrepancies between submitted URLs and indexed pages, which often reveals technical issues blocking indexing.
Related Terms
Core Web Vitals
A set of three Google-defined metrics that measure real-world user experience for loading performance, interactivity, and visual stability. Core Web Vitals are a confirmed ranking factor in Google Search.
Largest Contentful Paint (LCP)
A Core Web Vital that measures the time from page load start until the largest visible content element (image, video, or text block) is rendered on screen. Good LCP is 2.5 seconds or less.
Interaction to Next Paint (INP)
A Core Web Vital that measures the latency of all user interactions (clicks, taps, keyboard input) throughout the page lifecycle, reporting the worst interaction. Good INP is 200 milliseconds or less.
Cumulative Layout Shift (CLS)
A Core Web Vital that measures the total amount of unexpected layout shifts that occur during a page's entire lifespan. Good CLS is 0.1 or less, where layout shifts are calculated from the impact and distance of moving elements.
Time to First Byte (TTFB)
The duration from the user's request to the first byte of the server response reaching the browser. TTFB measures server-side processing speed and network latency, directly impacting all subsequent loading metrics.
Crawl Budget
The number of pages a search engine bot will crawl on your site within a given timeframe, determined by crawl rate limit and crawl demand. Crawl budget optimization ensures important pages are discovered and indexed efficiently.