728x90
320x100
이미지를 public 폴더에 넣어놓고 잘뜨던 이미지가 갑자기 엑박이 뜨면서 오류가 났다.
찾아보니 엑박을 해결하는데에는 몇가지 방법이 있었는데
<img src={require("이미지 경로").default} />
먼저 이방법으로 사용했었지만 해결은 안되었고,,,
process.env.PUBLIC_URL를 사용하여 해결하였다.
render() {
// Note: this is an escape hatch and should be used sparingly!
// Normally we recommend using `import` for getting asset URLs
// as described in “Adding Images and Fonts” above this section.
return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />;
}
리액트 공식문서 참고: https://create-react-app.dev/docs/using-the-public-folder/
728x90
320x100
'개발일지 > 개발일지! error out🙅' 카테고리의 다른 글
[TS]에러해결(Argument of type '' is not assignable to parameter of type ''. Type '' is not assignable to type ''. ) (0) | 2022.05.30 |
---|---|
[React] 단위표시(콤마)가 있는 숫자 계산하기 (0) | 2022.05.24 |
[React-API]api 불러오기 오류 해결 (1) | 2022.04.12 |
[Planner App/JS] D-day 생성하기 (1) | 2022.03.14 |
[Planner App/JS] to do list 전체삭제 하기 구현 (0) | 2022.03.03 |
댓글