웹 공부
비주얼스튜디오 폴더 사용, 깃, 리액트 깔기 팁
청어와물메기
2021. 11. 3. 17:25
728x90
파일 만들기
mkdir 파일명
파일 미리 만들어놨을 경우, 거기에 리액트까는 법은
cd 파일명
yarn create react-app .
커밋할때 모듈 너무 많아서 안될때는
.gitignore
파일 만들고 그 안에
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
#dependencies
0.5/node_modules
8.4 useMemo/node_modules
9styling-react/node_modules
node_modules/
이렇게 하니까 모듈 빼고 되더라
728x90