next/image
-
next.js 13 image 에러 2가지(혹은 4가지) 해결방법문제와 해결/next.js 2023. 5. 1. 19:40
1. Type 'StaticImageData' is not assignable to type 'string'. 뜻 정적 이미지 데이터 타입은 문자열 타입에 할당될 수 없다 ->src속성은 string을 기대하고있는데 다른녀석이 와버렸다(?) 원인 태그에 src속성으로 이미지 주소를 부여할 때 import 된 이름으로 가져올 때 발생 import example from '../../public/example.png'; ... const Component=()=>{ return( ) } 해결방법 example.src로 접근하면 해결 next.js13에서 이미지를 import구문으로 불러오면 객체형태의 StaticImageData가 들어온다. console.log로 import 해오는 이름을 찍어보면 객체 형..