fix: add SEO metadata and crawl fixes#623
Conversation
|
Deployment failed with the following error: |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
93742a7 to
d552bbf
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d552bbfc4f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| } | ||
|
|
||
| export async function HEAD(request: Request) { | ||
| const response = await GET(request); |
There was a problem hiding this comment.
Avoid rendering OG images for HEAD requests
The new HEAD handler delegates to GET, which still initializes WASM, loads fonts, and renders a PNG before discarding the body. In crawler-heavy scenarios that probe OG endpoints with HEAD, this adds unnecessary CPU and latency while providing no extra value over returning headers directly, so it can materially increase load on this API route.
Useful? React with 👍 / 👎.
Summary
Add SEO metadata and crawl fixes for mpp.dev docs pages.