Minified React error #418 in production #74305
Replies: 3 comments 1 reply
|
Is this problem in Next.js, or is it in React 19 itself? |
0 replies
|
These are React hydration issues. Any party that manipulates JSX to produce the first server HTML, and even those that pre-process it in the browser can be at fault. With that being said, there is a new experimental, Next.js config, So you'd need to add that to your next.config.js experimental: const config: NextConfig = {
experimental: {
allowDevelopmentBuild: true
}
};And then run |
1 reply
|
This issue was resolved by not initializing real-time timestamps. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Summary
In development

In production

Is this fine? It's so annoying to have hydration errors in production, especially when there are no errors in development.
This occurred only in console log
Additional information
Example
No response
All reactions