본문 바로가기

React

[React] 에러 해결 : img elements must have an alt prop, either with meaningful text, or an empty string for decorative images jsx-a11y/alt-text

에러 상황

src 이미지 주소를 삽입하였더니 경고 메세지가 떴다. 

img elements must have an alt prop, either with meaningful text, or an empty string for decorative images  jsx-a11y/alt-text

 

원인 및 해결방법 

아래와 같이, 웹 표준에 따라 img 태그는 alt를 작성해야 한다. 

alt를 작성하지 않는 경우도 있지만, 웹표준에 맞추려 alt를 작성해야 하는 것이다. 

alt 내용은 자유롭게 적으면 된다.

 

<img src = " " alt="logo" />

 

'React' 카테고리의 다른 글

[React] useEffect  (0) 2023.06.12
[React] useState, props  (0) 2023.06.12
[React] React.JS, React-dom , Babel, JSX  (0) 2023.06.05
[React] 오류 sh: react-scripts: command not found  (0) 2023.06.04
[React]react-router-dom 설치하기  (0) 2023.06.03