Recent Posts
Recent Comments
Archives
반응형
250x250
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Today
Yesterday

Total
05-06 04:14
관리 메뉴

Hey Tech

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

SW 개발/React JS

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

Tony Park 2022. 6. 30. 20:15
728x90
반응형

❗️ 에러 상황

이미지를 화면에 출력하기 위해 아래와 같이 작성하였는데 에러를 마주하였습니다.

<img src = {image} />

📝 에러 메시지

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

✅ 원인 및 해결방법

아래와 같이, 웹 표준에 따라 img 태그는 alt를 작성해야 하며, 내용은 자유입니다.

<img src = {image} alt = "face"/>

포스팅 내용에 오류가 있다면 아래에 댓글 남겨주세요.

그럼 오늘도 즐거운 하루 보내시길 바랍니다 :)

고맙습니다😊

728x90
반응형
Comments