fix(web): keep marketing routes static on Cloudflare Workers - #145
Merged
Conversation
The GitHub star fetch used ISR revalidation, which cannot write to the read-only static-assets cache and 500s every non-home route.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
conduit-web | b344ce9 | Commit Preview URL Branch Preview URL |
Aug 21 2026, 09:27 AM |
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
cache: "force-cache") instead of hourly ISR (revalidate: 3600)dynamic = "force-static"so a layout fetch cannot opt the whole site into SSRThe Workers deploy uses a read-only static-assets incremental cache. ISR revalidation cannot write to it, so
/docs,/modules,/hosting,/contribute, and/roadmap500 while/still serves from Static Assets.Test plan
npx tsc --noEmitinapps/webnpm run build—/,/docs,/modules,/hosting,/contribute,/roadmapprerender as static (○/●); only/api/searchis ƒconduit-weband confirm those URLs return 200 (client nav from the homepage, not only a full reload)