Technical

Renderability

Renderability is the ability of search engine crawlers to execute JavaScript and render a page's content as it would appear to a user in a browser.

Google uses a two-phase indexing process: first it crawls the raw HTML, then it queues the page for rendering (executing JavaScript). The rendering queue can take seconds to weeks, meaning JavaScript-only content may not be indexed immediately.

This is why server-side rendering (SSR) and static site generation (SSG) are critical for SEO. Content present in the initial HTML is indexed immediately. Content that requires JavaScript execution is subject to rendering delays and potential failures.

Next.js App Router uses React Server Components by default, which render on the server and send HTML to the client. This is ideal for SEO. Client Components (marked with 'use client') still need careful consideration — ensure critical SEO content is not locked behind client-side-only rendering.

Stop shipping broken SEO

Indxel validates your metadata, guards your CI/CD pipeline, and monitors indexation — so you never miss an SEO issue again.