next-intl 사용중 ENVIRONMENT_FALLBACK 빌드에러

miin·2025년 5월 16일
0

Trouble Shooting

목록 보기
8/8

next 15.ver / react 19.ver
next-intl 사용
정적 빌드 & 서버 컴포넌트 사용 x

빌드시 발생한 에러 내용

Error: ENVIRONMENT_FALLBACK
//...생략
  code: 'ENVIRONMENT_FALLBACK'

해결

NextIntlClientProvider에 timeZone 속성을 추가

const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
return (
  <NextIntlClientProvider timeZone={timeZone}>

0개의 댓글