You can either move it inside src/, or add a symlink to it from project's node_moules/.

송은·2023년 6월 14일
0
post-custom-banner

Module not found: Error: You attempted to import ../../../public/assets/icons/ArrwTop.svg which falls outside of the project src/ directory. Relative imports outsde of src/ are not supported.
You can either move it inside src/, or add a symlink to it from project's node_moules/.

jsx 파일에서 이미지를 import 하기위해 경로를 지정했는데 다음과 같이 이미지 위치에 따른 오류가 발생했다.

CRA에서 컴파일은 src 내부에서만 일어나는데, 이때 js에서 import된 이미지와 같이 엮여있는 파일들은 모두 컴파일 대상이다.

따라서 (1) 이미지를 js 파일에 import 해오는 경우이거나, (2) css 파일에서 background-image로 사용되는 경우라면, 이미지가 src 폴더 내부에 있어야 한다.
(public 폴더는 우리가 CRA를 배포했을 때 실제 서버에 배포되는 폴더)

참고로 img의 src 속성으로 바로 불러오는 경우에는 컴파일 이후에 index.html을 기준으로 이미지를 불러오기 때문에 public 내부에 있어야 한다.


해결

폴더 구조 및 이미지 위치

이미지 파일들이 있는 assets 폴더를, src 폴더 바깥의 public 폴더에서 src 폴더 내부로 이동시켜주어 해결할 수 있다.




출처

profile
개발자
post-custom-banner

0개의 댓글