Open jocarrd opened 1 year ago
I'm unable to get it working at all with Next app directory. It just displays as <span></span>
Update: It's being caused by a completely seperate issue. For some reason, another component using: dangerouslySetInnerHTML
is preventing this from running.
I was able to get it working with App directory - but you can't use enableScrollSpy
- I used the Waypoint component instead.
…but that works in development, but silently fails in a production build, which I'm currently diagnosing.
I was able to get it working with App directory - but you can't use
enableScrollSpy
- I used the Waypoint component instead.…but that works in development, but silently fails in a production build, which I'm currently diagnosing.
Any update on this?
I think it would be very useful to add in the documentation how to use it in the nextjs server components, at first it took me a bit to understand it and it can help more than one developer.
NextJS doc
Example:
if you try to use it directly within a Server Component, you'll see an error:
This is because Next.js doesn't know is using client-only features.
To fix this, you can wrap third-party components that rely on client-only features in your own Client Components:
Now, you can use directly within a Server Component: