개발일기/리액트, Next.js
리액트 'img elements must have an alt prop, either with meaningful text, or an empty string for decorative images' 버그 해결 방법
프로그래머콩
2020. 2. 5. 18:23
<img src={url} />
위와 같이 적어서 버그가 났었음.
해결 방법 :
alt="" 추가 해줌으로써 해결
alt 추가 해주니 버그남
이유는 차차 알아봐야 겠다...
알다가도 모를 ...이 아닌
까도까도 계속 모르는게 나오는 리액트의 세상
<img src={urll} alt="" />