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