Next.js 프로젝트에서 빌드를 했더니 다음과 같이 에러가 떴다.

localStorage의 userType을 가져와 분기처리를 할 일이 있었는데 그 때 localStorage에서 값을 가져오면서 에러가 발생한 듯 보였다.
const localboxCreatorType =
typeof window !== 'undefined'
? localStorage.getItem('localboxCreatorType')
: null;
// 혹은
if (typeof window !== 'undefined') {
const localboxCreatorType = localStorage.getItem('localboxCreatorType');
}
import { useEffect } from "react";
useEffect(() => {
const localboxCreatorType = localStorage.getItem('localboxCreatorType')
}, [])
참고