Nextjs: TypeError: 지원되지 않는 파일 형식: v.11로 업데이트한 후 정의되지 않음 업데이트 후 이미지를 로드하려고 할 때 11에서 다음 항목: import segmentLogoWhitePng from 'assets/images/my-image.png' 다음 오류가 발생함: TypeError: unsupported file type: undefined (file: undefined) 최신 업데이트 그것은 지금 현재 작동하고 있다.next@v11.0.1. 아래 단계를 따를 필요가 없음. 해결 방법으로 지금은 정적 이미지 기능을 사용하지 않도록 설정하십시오. // next.config.js module.exports = { images: { disableStaticImages: true } ..