코딩
Next js getServerSideProps undefined 해결
코딩쪼렙
2023. 2. 12. 12:58
728x90
getserversideporps 내에서 console.log()하면 값이 나오는데
client에서는 계속 undefined만 나오는 오류발생.
삼일간 긴 시간을 삽질했으나 철자오류로
페이지 프롭이 컴포넌트로 전달이 안됐고 클라이언트에서 result를 받아올 수 없었다.
_app.jsx
export default function App({ Component, PageProps }) {
---> export default function App({ Component, pageProps }) {
PageProps -> pageProps로 해결완료!