TIL_230105

그래도 해야지·2023년 1월 5일
0

TIL

목록 보기
11/44

문제 1

Module not found: Error: You attempted to import ../shared/Router which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
You can either move it inside src/, or add a symlink to it from project's node_modules/.
ERROR in ./src/App.jsx 5:0-38
Module not found: Error: You attempted to import ../shared/Router which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
You can either move it inside src/, or add a symlink to it from project's node_modules/.

해결

모듈을 찾을 수 없음: 오류: 프로젝트 src/ 디렉토리 외부에 있는 ../shared/Router를 가져오려고 했습니다. src/ 외부의 상대 가져오기는 지원되지 않습니다.
src/ 내부로 이동하거나 프로젝트의 node_modules/에서 심볼릭 링크를 추가할 수 있습니다.

src내부에 pages, shared가 있어야 가져오기를 할 수 있는 거였음!

0개의 댓글