-
Notifications
You must be signed in to change notification settings - Fork 28.1k
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
Dynamic import with suspense:true will disable ssr:false #39609
Comments
As #36636 (comment) you can't opt into suspense mode with other options including |
Currently, `next/dynamic` will opt-in to `React.lazy` if `{ suspense: true }` is used. And React 18 will always resolve the `Suspense` boundary on the server-side, effectively ignoring the `ssr` option. The PR fixes #39609 by showing a warning message when `{ suspense: true, ssr: false }` is detected. The error documentation and the corresponding test case has also been updated. In the future, Next.js could implement a custom version of `React.lazy` that could suspense without executing the lazy-loaded component on the server-side. cc @huozhi ## Bug - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [x] Errors have helpful link attached, see `contributing.md`
The PR which closes this issue will provide more error message in the future, but it's still need to tweak a bit the change to pick the suspency dynamic or the previous dynamic eaither for now. |
This closed issue has been automatically locked because it had no new activity for a month. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you. |
Verify canary release
Provide environment information
What browser are you using? (if relevant)
Chrome 104.0.5112.79
How are you deploying your application? (if relevant)
yarn dev
Describe the Bug
Expected Behavior
ssr: false
should work.Link to reproduction
It is too easy to reproduce.
To Reproduce
It is related to this issue #36636.
The text was updated successfully, but these errors were encountered: