반응형
<"리액트를 다루는 기술" 책 참조>
상대 경로
import ProfileDataList from "../../globals/ProfileDataList";
절대 경로
import ProfileDataList from "globals/ProfileDataList";
루트 폴더에 jsconfig.json 파일 생성 후 밑에 내용을 적어주면 src 폴더 기준으로 경로를 찾음.
{
"compilerOptions": {
"baseUrl": "src"
},
"includes": ["src"]
}
반응형
'JavaScript > React' 카테고리의 다른 글
React LifeCycle(수명 주기), 두 번 렌더링 되는 이슈 (0) | 2022.04.16 |
---|---|
React 클래스형 컴포넌트 constructor, super(props) 사용 이유 (0) | 2022.04.16 |
React Props와 State의 차이 (0) | 2022.04.15 |
React npm install 설치시 npm ERR! ERESOLVE unable to resolve dependency tree (0) | 2022.04.15 |
React Hooks 이란 (0) | 2020.08.17 |