Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 개발
- 클라이언트
- nqueens
- 해커톤
- underbar
- JS
- 알고리즘
- 코드스테이츠
- 코딩
- 리액트
- 엔퀸즈
- underscores
- DOM
- 제일어려워
- ftech
- array
- 공부
- 일상
- 자바스크립트
- 취업
- 연습
- Instantiation Patterns
- this
- 초보
- JavaScript
- react
- grpahQL
- vscode
- 포스기
- method
Archives
- Today
- Total
analogcoding
react + typescript 절대경로 import 본문
babel-plugin-module-resolver 플러그인 추가
babel.config.js 해당 플러그인 추가 후 alias 에 별칭 : 주소 형태로 저장
plugins: [
[
'module-resolver',
{
root: ['.'],
alias: {
'~': './src',
'~buttons': '.src/components/buttons',
},
},
],
],
tsconfig 에 baseUrl 과 paths 추가
"baseUrl": "./src"
"paths": {
"~/*": ["./*"],
"~buttons/*": ["components/buttons/*"]
},
'Be well coding > Mine' 카테고리의 다른 글
react SEO , prerender (1) | 2020.06.16 |
---|---|
react 에서 SVG 아이콘 컴포넌트로 사용하기. (0) | 2020.05.29 |
error Failed to build iOS project. We ran “xcodebuild” command but it exited with error code 65 (0) | 2020.05.11 |
typescript 에서 storybook 사용하기 (0) | 2020.04.28 |
Git branch 이름 변경 (0) | 2020.04.22 |
Comments