본문 바로가기

코딩

Next js getServerSideProps undefined 해결

728x90

getserversideporps 내에서 console.log()하면 값이 나오는데

client에서는 계속 undefined만 나오는 오류발생.

 

삼일간 긴 시간을 삽질했으나 철자오류로

페이지 프롭이 컴포넌트로 전달이 안됐고 클라이언트에서 result를 받아올 수 없었다.

 

_app.jsx

export default function App({ Component, PageProps }) {

  ---> export default function App({ Component, pageProps }) {

PageProps -> pageProps로 해결완료!

 

 

'코딩' 카테고리의 다른 글