320x100
img elements must have an alt prop, either with meaningful text, or an empty string for decorative i...
<img src={url} />
위와 같은 형식으로 이미지 태그를 작성 했더니 아래와 같은 오류나 났다.
Windows PowerShell
Compiled with warnings.
./src/component/About.js
Line 17:29: img elements must have an alt prop, either with meaningful text, or an empty string for decorative images jsx-a11y/alt-text
Search for the keywords to learn more about each warning.
To ignore, add // eslint-disable-next-line to the line before.
img 요소에는 alt가 무조건 있어야 한다는 설명....! 사실 alt를 작성하지 않는 경우도 많지만, 웹표준에 맞추려 alt에 작성하는게 맞다. 확실히 그냥 자바스크립트가 아닌 프레임워크에서는 표준에 대해 엄격한 규칙이 있음을 다시 깨닫게 된다. 😉
<img src={process.env.PUBLIC_URL+'/images/me.png'} alt="profile"/>
반응형
'Developer > React' 카테고리의 다른 글
[firebase] 백엔드없이 firebase로 리액트 프로젝트 만들기 (0) | 2020.09.14 |
---|---|
yarn 글로벌 인스톨 하고 npx 설치 및 최신화(업그레이드) (0) | 2020.05.19 |
오랜만에 yarn start 또는 npm start 시 나는 오류 (0) | 2020.04.21 |
리액트 프로젝트 레파지토리 받아서 세팅하기 (1) | 2020.04.21 |
리액트 프로젝트 만들기 (0) | 2020.04.21 |