hotfix: serve icon.svg + apple-icon.png as static assets#13
Merged
Conversation
Same failure mode as the OG route handlers: Next's app-router treats src/app/icon.svg and src/app/apple-icon.png as metadata files and emits them as prerendered route handlers (.body + .meta pairs). OpenNext Cloudflare doesn't promote those to static assets, so on preview they return 404. Slack's unfurl then has no usable favicon and omits it. Move both files to public/ so they're plain static assets, and declare them explicitly in the layout's icons metadata so Next still emits the <link> tags. favicon.ico stays in src/app/ (Next handles that one; works already). Result: /icon.svg and /apple-icon.png both land in the worker's assets bundle and serve via the edge CDN. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
docs-preview | 1f623ab | Commit Preview URL Branch Preview URL |
Apr 23 2026, 03:36 PM |
This was referenced May 13, 2026
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.
Summary
Same failure mode as the OG route handlers before we fixed them. Next's app-router treats
src/app/icon.svgandsrc/app/apple-icon.pngas metadata files and emits them as prerendered route handlers (.body+.meta). OpenNext doesn't promote those to static assets → 404 on preview → Slack unfurl has no favicon.Move both to
public/+ declare expliciticonsmetadata in the layout. favicon.ico stays put (Next handles that one correctly).Test plan
pnpm build+pnpm exec opennextjs-cloudflare buildsucceed.open-next/assets/icon.svgand.open-next/assets/apple-icon.pngpresent/icon.svgand/apple-icon.pngreturn 200 on preview