프론트 개발 블로그

[React] 절대 경로 사용하여 모듈 가져오기 본문

React

[React] 절대 경로 사용하여 모듈 가져오기

maybe.b50 2021. 3. 11. 00:31

문제 

리액트에서 컴포넌트 모듈 가져올 때 경로 설정하는 방법.

depth가 깊어질수록 경로 설정이 불편하기 때문에 사용.

 

 

해결

jsconfig.json (타입 스크립트를 사용한다면 tsconfig.json) 파일을 생성하여 옵션을 작성하면 된다.

{
  "compilerOptions": {
    "baseUrl": "src"
  },
  "include": ["src"]
}

create-react-app.dev/docs/importing-a-component/#absolute-imports

반응형

'React' 카테고리의 다른 글

Error: Node Sass version 5.0.0 is incompatible with ^4.0.0.  (0) 2021.01.05
windowing 라이브러리  (0) 2021.01.05
Ref 와 DOM  (0) 2020.12.17
Forwarding Refs (React.forwardRef)  (0) 2020.12.14
Context API  (0) 2020.12.10