NextJS로 커스텀 설정을 하던 도중 Found a change in next.config.js. Restarting the server to apply the changes... 설정이 바뀌었으니 서버를 재시작하라는 메시지를 확인했다.
이후바루 npm run dev를 했지만 Try building your app with 'next build' before starting the production server.라는 에러메시지와 함께 서버가 재시작되지 않았다.
구글링해본 결과 빌드하고 실행해야하는 것같다. 아래의 명령을 순차적으로 터미널에 입력해주었더니 서버가 정상적으로 실행되었다.
npm run build
npm run dev
항상 좋은 글 감사합니다.