728x90
반응형
Server Error ReferenceError: window is not definedThis error happened while generating the page. Any console logs will be displayed in the terminal window.
import dynamic from 'next/dynamic'
const DynamicComponent = dynamic(() => import('../components/hello'))
function Home() {
return (
<div>
<Header />
<DynamicComponent />
<p>HOME PAGE is here!</p>
</div>
)
}
export default Home
동격 가져로기로 에러해결
728x90
반응형
'프로그래밍 > ReactJS' 카테고리의 다른 글
nextjs 파일 다운로드 링크 만들기 (0) | 2022.05.28 |
---|---|
nextjs 비주얼 스튜디오 코드 디버깅 (0) | 2022.04.19 |
useState 동기화 문제 (0) | 2022.04.19 |
nextjs Open graph 추가하기 - 셀프 코딩 부트캠프 (0) | 2022.04.11 |
Nextjs Fast Refresh 안되는 문제 해결 - 핫 리로딩 (0) | 2022.04.01 |
댓글