What changes when you move to Hydrogen
Hydrogen is Shopify's React-based storefront framework for headless stores. Moving to Hydrogen means you get React-level frontend control — but you lose most of Shopify's automatic SEO and speed wins that ship with Online Store themes. Auto-emitted product schema, auto-canonical tags, the image_url pipeline, lazy-loading defaults, theme-emitted hreflang — all need to be wired in manually on Hydrogen. Grow SEO doesn't work at all. Catalog still works if routes follow the correct format. The trade-off is control for complexity.
The April 2026 Hydrogen release
The April 9, 2026 Hydrogen release shipped three changes that matter for SEO and performance. (1) Storefront API updated to the 2026-04 version. (2) The Storefront API proxy is now mandatory — every Storefront API call routes through Hydrogen's backend, improving security and TTFB. (3) Backend consent mode is enabled — consent enforcement moves server-side, removing a chunk of client JavaScript that previously affected INP. Together, these tighten Hydrogen's performance ceiling.
What you ship manually on Hydrogen
The Hydrogen SEO build list: (1) Product schema (JSON-LD via @shopify/hydrogen's structured data helpers or hand-emitted in route loaders). (2) Canonical tags on every route (via Hydrogen's <Seo> component or hand-emitted in head). (3) Sitemap generation (Hydrogen ships a sitemap utility but you wire it into your routes). (4) hreflang tags per route (no auto-emission). (5) Image optimisation via @shopify/hydrogen's <Image> component (the closest Hydrogen-equivalent of image_url filter). (6) Meta titles and descriptions per route (via Remix/React Router's meta exports).
Hydrogen and Shopify Catalog eligibility
Shopify Catalog requirements explicitly include Hydrogen and Headless channels — Hydrogen storefronts qualify for Catalog if they publish products to the Hydrogen sales channel with the correct route format. The 'correct route format' is the gotcha: Catalog needs to find your product URLs in a pattern it can crawl. Standard Hydrogen routing (/products/handle, /collections/handle) works. Custom routing schemes that don't expose canonical product URLs at predictable paths fail Catalog eligibility.
Grow SEO and Hydrogen — the incompatibility
Grow SEO — Shopify's in-admin AI suggestion tool for title tags and short descriptions — is explicitly not compatible with Hydrogen per Shopify's own doc. Verbatim: 'not compatible with Hydrogen'. This is a structural limitation: Grow SEO writes to the Online Store channel's search-engine-listing fields, and Hydrogen storefronts don't render the Online Store channel's templates. If you want AI-driven SEO suggestion tooling on a Hydrogen store, you build or buy it; Shopify doesn't ship it.