[Next.js] Hydration Mismatch 에러
·
React, Next.js
1. 문제 상황페이지 렌더링 시 브라우저 콘솔에 다음과 같은 붉은 에러 메시지가 출력되었습니다.Uncaught Error: Hydration failed because the server rendered text didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used: 에러 로그를 자세히 살펴보니 서버와 클라이언트의 렌더링 결과가 단 1초 차이로 달랐습니다.* Server: 2026-02-19 15:11:23* Client: 2026-02-19 15:11:24 2. 원인 분석문제는 컴포넌트 본문에 선언된 new Date() 코..