[TIL] 20220912

yes·2022년 9월 12일
0

TIL 💌

목록 보기
18/55
  • 드랍다운 버튼 공통으로 쓸 수 있게 구현 완료
    • 드랍다운 닫기 hooks 추가
    • 드랍다운 selectoption hooks 추가
  • 알고리즘 공부

Next.js에서 npm run build시 에러 발생

Error occurred prerendering page "/". Read more: https://nextjs.org/docs/messages/prerender-error

원인 : axios로 데이터를 fetch할 때 public/mock 디렉토리에 담겨져있는 mock data를 불러오고 있었기 때문에 url에 localhost주소가 들어가있다. 하지만 빌드를 실행할 때는 온라인 상태가 아니기 때문에 localhost를 포함하면 에러가 나게 된다.

해결 : mock data를 상수로 분리

Fetch error when building production locally. · Discussion #14505 · vercel/next.js

0개의 댓글