IT/React.js

[React] 리액트 프로젝트 초기 세팅

월공 2021. 9. 23. 11:51
728x90
300x250

Prettier 코드 스타일 자동정리 (최상위 디렉토리 위치 파일생성 .prettierrc)

{
    "singleQuote": true,
    "semi": true,
    "useTabs": false,
    "tabWidth": 2,
    "trailingComma": "all",
    "printWidth": 80
}

 

vscode 자동 불러오기 기능 최상위 디렉토리 위치 파일생성 jsconfig.json

{
    "compilerOptions": {
        "target": "es6"
    }
}

 

 

# axios 사용시
yarn add axios

# styled-components 사용시
yarn add styled-components
728x90
300x250