cherry-pick seo hygiene P0 → main - #1474
Merged
Merged
Conversation
…age (#1473) Four verified crawl / SEO issues confirmed on prod (2026-07-26): 1. Sitemap + /api/citable served no s-maxage, every crawl re-ran the loader chain (x-vercel-cache: MISS observed). Add explicit Cache-Control on both via next.config.ts headers(). 2. /404 emitted two identical <meta name="robots" content="noindex"> tags because not-found.tsx set { index: false } and Next merged instead of replacing the layout's robots shape. Give not-found the full IS_STAGING-style shape so Next replaces. 3. Mixed-case URLs served 200 instead of 308-lowercase (/products/Alchemy, /Benchmarks/foo). Add case-normalising 308 at the top of middleware; broaden matcher to cover every HTML route. 4. Bench pages with chain variants (aggregator-head-lag, perp-fees) emitted 4-5 <meta property="og:image"> tags via generateImageMetadata fanning out per-chain entries. Social scrapers picked nondeterministically. Chain-scoped OG cards were never rendered on the actual /[chain] pages anyway (they inherit the site-wide OG), so the fan-out gave no upside. Return only the default entry. Co-authored-by: Florent Tapponnier <contact@mobula.io>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherry-pick of #1473 (merged to dev). Same 4 verified P0 fixes: cache headers on sitemap+/api/citable, single robots meta on /404, case-normalising 308 in middleware, single og:image on chain-variant benches. See #1473 body for details.