-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
createReactContext breaking with Next.js 13/Webpack 5 #271
Comments
hmmm it also seems that if I monkey-patch as a workaround, going to try to find a way to prefer the CommonJS version unless I can figure out why Webpack is messing up with the React.default. |
easy workaround, add this to your custom webpack config in next.js: (of course, brittle hack etc etc)
|
Same problem here with Next.JS 14. @mmmulani's suggestion above does not fix the issue. |
hi all, this project https://github.com/relay-tools/relay-hooks/tree/master/examples/relay-hook-example/nextjs-ssr-preload is made in nextjs and works fine. Can you create a mini repo on github that highlights the problem? |
@morrys your project is using the pages router. IIRC this issue is for the app router |
Running into a very similar issue as #194, a SSR build of a Next.js 13 project is failing from this call: https://github.com/relay-tools/relay-hooks/blob/master/src/ReactRelayContext.ts#L18
in particular, the
react === firstReact
invariant is failing: https://github.com/facebook/relay/blob/main/packages/relay-runtime/store/createRelayContext.js#L39from monkey-patching Relay, I have confirmed that
firstReact.default === react
istrue
, which makes me think this is a Webpack issue.and the ReactRelayContext code after being passed through Webpack looks like this:
which looks like it's passing in
React.default
rather than the plainReact
in this invocation. Bizarrely, in the same buildreact-relay
in callingcreateReactContext
without Webpack unwrapping React.At this point, I must admit that I am not sure if this is a relay-hooks bug, a Webpack bug, or perhaps a Next.js configuration bug. But I did notice that if I monkey-patch
node_modules/relay-hooks/lib/es/ReactRelayContext.js
and changeimport React from 'react';
intoimport * as React from 'react';
, the issue does not occur. So perhaps this is a relay-hooks bug?The text was updated successfully, but these errors were encountered: