본문 바로가기
Coding/React

React - Hydration failed because the initial UI does not match what was rendered on the server(nextjs-MUI)

by z쿳쿳z 2022. 9. 2.
728x90
반응형

next js에서 Hydration failed because the initial UI does not match what was rendered on the server error가 발생한다면...

next js의 장점은 SSR인데 이 과정에서 문제가 되었다. server에서 render가 먼저 되기 때문에 client와 맞지 않은 tag들이 있기 때문이다. 

 

#object

   - Hydration failed because the initial UI does not match what was rendered on the server 에러 해결

 

## 해결

SSR이 될 때 말고 useEffec가 실행이 되고 나서 render를 하게 된다면 다음과 같은 에러가 사라진다. isMouted가 true 일 때만 render가 되도록 설정을 했다.

 

위와 같은 방법으로도 해결이 되지만, 근본적인 원인을 해결하기 위해서는 _app.tsx 와 _document.tsx 에서 setting 할 때부터 설정을 해야한다.

 

### 참조 이전에 작성했었던 글

https://mr-son.tistory.com/116?category=911627 

 

React - Next - Material ui Warning: Prop className did not match

Warning: Prop className did not match Next js에 Material ui를 setting 할 때, 문제점이 발생했다. 처음 켤때는 아무런 문제가 없지만 새로고침을 하거나 다른 페이지를 이동하동 하다보면 콘솔에 위와 같은 me..

mr-son.tistory.com

 

728x90
반응형