-
SummaryI just initiated a project using
I'm getting it the very first time I open the page in the browser after running "npm run dev". Then when I refresh the page, the error goes away. Is this normal? Additional informationpackage.json
`
{
"name": "test-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"next": "15.0.3"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3"
}
} |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Hey, I tried to recreate the Issue, but for me, the {
"name": "test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"next": "15.0.3"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3"
}
}Do you have some code for other components you used? Because I don't think, that this error is related to the |
Beta Was this translation helpful? Give feedback.
-
|
Hi, Could you post the stack error, or screenshot of where the hydration error is happening? It might as well just be an extension that messing it up. Try it out on incognito mode. |
Beta Was this translation helpful? Give feedback.
Hi,
Could you post the stack error, or screenshot of where the hydration error is happening?
It might as well just be an extension that messing it up. Try it out on incognito mode.