import2 [React] import path에 상대 경로를 절대 경로로 변경하기 src 하위 폴더의 파일에서 상대 경로로 다른 폴더의 파일에 접근할 때 폴더 구조가 복잡하고 깊은 경우 ../../components/A 형태로 ../이 많이 사용되고 가독성이 떨어진다. import A from '../../components/A'; import CommonB from '../../components/common/B'; import commonStyle from '../../lib/styles/common'; 절대 경로를 사용하면 특정 폴더를 기준으로 import path를 설정할 수 있다. 최상위 폴더 아래에 jsconfig.json (typescript인 경우 tsconfig.json) 파일을 생성한다 baseUrl 설정을 추가한다. 아래의.. 2020. 12. 27. [ WebStorm ] 프로젝트를 깃허브로 연결하기 1. GitHub 사용을 가능하게 만든다.VCS > Enable Version Control Integration... 2. Git 으로 설정 3. GitHub로 프로젝트 ImportVCS > Import into Version Control > Share Project on GitHub 4. 생성 할 레파지토리의 이름과 설명을 적는다. 5. 성공~ 깃허브에 접속하면 새롭게 생성된 레파지토리를 확인할 수 있다. 출처https://www.jetbrains.com/help/webstorm/2017.2/using-git-integration.html#put-existing-project-under-Git 2017. 8. 31. 이전 1 다음