-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Cloudflare templates break when prerendering is enabled #45
base: main
Are you sure you want to change the base?
Conversation
The current Not sure how to make Cloudflare templates work with the So, with current Cloudflare templates, even with the fix from this PR, pre-rendering does not work. |
hi @supachaidev. I omit detailed explanations, but this is an issue caused by the conditional exports feature in Node.js and React. The workaround is to provide NODE_OPTIONS='--conditions workerd' react-router build If you are windows users, use cross-env. {
"scripts": {
"build": "cross-env NODE_OPTIONS=\"--conditions workerd\" react-router build",
}
} If you are using React@18, use NODE_OPTIONS='--conditions worker' react-router build For code examples, refer to this repository and commit. |
Thank you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Sorry for not getting to this earlier.
We're currently in the process of updating the Cloudflare templates to use @cloudflare/vite-plugin
and the Vite Environment API. We've updated the cloudflare
template — is this still an issue there?
Issue Description
The Cloudflare templates fail when prerendering is enabled (#31) due to incompatibility between its custom entry point and React Router Vite plugin's prerendering assumptions.
Technical Details
virtual:react-router/server-build
rollupOptions.entryFileNames
toserverBuildFile
fromreact-router.config.ts
, which prevents multiple entry points inrollupOptions.input
Solution
Fix prerendering in the Cloudflare templates by:
entryFileNames
to be[name]
to support multiple entry pointsinput
:index.js
: matches defaultserverBuildFile
React Router configurationworker.js
: matched by updatedmain = "./build/server/worker.js"
inwrangler.toml
index.js
as theserverBuildFile
inreact-router.config.ts
for clarity and discoverabilityUpdated both
cloudflare
andcloudflare-d1
templates.Proposed Long-term Fix
The React Router Vite plugin should be updated to support custom entry points for use cases like Cloudflare Workers.
Suggested Implementation
I considered leaving
entryFileNames
as the Rollup default[name].js
, but this made it harder for the developer to match theinput
entries invite.config.ts
to the file names inwrangler.toml
andreact-router.config.ts
. On the other hand, this changes Rollup's defaults and should be documented. Happy to change it back to Rollup's default and changeinput
to{index: ..., worker: ...}
if the maintainers have an opinion on this.We should probably document this feature in general anyway though.
Next Steps
entryFileNames
to be[name]
in the Cloudflare templates once the React Router Vite plugin is updated