2024 frontend development experience with Next.js #73318
-
2024-11-28.16-22-24.mp4Every fucking Next.js app is like this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yeah, that's React hydration errors because of browser extensions, that they promised would be fixed with React 19, https://react.dev/blog/2024/04/25/react-19#compatibility-with-third-party-scripts-and-extensions , but here we are - not a Next.js issue as far as I can see ~ to be fair, having extensions that also modify the HTML before scripts run is a bit iffy... Unfortunately, for the time being, you'd need to develop without dark-reader 🤷♂️ or... apply |
Beta Was this translation helpful? Give feedback.
Yeah, that's React hydration errors because of browser extensions, that they promised would be fixed with React 19, https://react.dev/blog/2024/04/25/react-19#compatibility-with-third-party-scripts-and-extensions , but here we are - not a Next.js issue as far as I can see ~ to be fair, having extensions that also modify the HTML before scripts run is a bit iffy...
Unfortunately, for the time being, you'd need to develop without dark-reader 🤷♂️ or... apply
suppressHydrationWarning
, to the body tag (assuming that's where dark-reader hijacks the DOM).