도하
요즘 회사에서 nextjs로 웹을 만들고 있는데, 노트북에서 아이맥으로 옮기고 나니 새로운 오류가 발생해서 기록한다.
error - ./public/img/main/image-ai.png
TypeError: unsupported file type: undefined (file: undefined)
이런 error가 발생하고 있었고, 이미지를 인식을 못하고 있는거같아서, 구글링을 해봤더니 답은 쉽게 나왔다.
// next.config.js
module.exports = {
images: {
disableStaticImages: true
}
}
next.config.js 파일에 이미지 세팅에 disableStaticImages: true 이거 한줄 추가해주는 것으로 잘 마무리 되었다.
쏘이지~