Replies: 1 comment 6 replies
-
uhh the docs have not been properly updated! It was listed here, https://nextjs.org/blog/next-15-rc2#other-changes:
I'll try to make a PR to update the docs for App Router. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary
Hi, I tried to understand the behavior of
next/dynamic
. According to the documentation, it usesSuspense
andReact.lazy
under the hood. However, when I inspected the components using the React DevTools, I couldn't find anySuspense
. I tested this with both[email protected]
and[email protected]
(page router). All I could see was aLoadableComponent
.The reason I asked this is that I am facing a hydration error when using
next/dynamic
. However, the error disappears when I useReact.lazy
withSuspense
.Thanks in advance!
Additional information
No response
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions