안 친한 Nextjs.. TypeError: unsupported file type: undefined (file: undefined) 오류 기록

도디·2022년 6월 14일
1

안친한 Nextjs

목록 보기
1/1
post-thumbnail

도하
요즘 회사에서 nextjs로 웹을 만들고 있는데, 노트북에서 아이맥으로 옮기고 나니 새로운 오류가 발생해서 기록한다.

error - ./public/img/main/image-ai.png
TypeError: unsupported file type: undefined (file: undefined)

이런 error가 발생하고 있었고, 이미지를 인식을 못하고 있는거같아서, 구글링을 해봤더니 답은 쉽게 나왔다.

https://stackoverflow.com/questions/68008498/nextjs-typeerror-unsupported-file-type-undefined-after-update-to-v-11

// next.config.js 

module.exports = {
  images: {
    disableStaticImages: true
  }
}

next.config.js 파일에 이미지 세팅에 disableStaticImages: true 이거 한줄 추가해주는 것으로 잘 마무리 되었다.

쏘이지~

profile
충전중..🤔

0개의 댓글