오류 해결

VScode 에서 gitignore 설정

Nellie Kim 2024. 2. 7. 22:11
728x90

10000개가 넘게 커밋목록에 뜬다 ;;;

 

 

gitignore 설정을 해주었다 .

 

아래 사이트에서 'react', 'nextJS' 같이 원하는 키워드를 입력하고 '생성' 버튼을 누르면 적절한 ignore 형식을 만들어준다.

 

https://www.toptal.com/developers/gitignore

 

gitignore.io

Create useful .gitignore files for your project

www.toptal.com

 

 

# Created by https://www.toptal.com/developers/gitignore/api/react,nextjs
# Edit at https://www.toptal.com/developers/gitignore?templates=react,nextjs

### NextJS ###
# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

### react ###
.DS_*
*.log
logs
**/*.backup.*
**/*.back.*

node_modules
bower_components

*.sublime*

psd
thumb
sketch
keys.json # 이걸 해주어야 한다!!!!!!!!!!!

# End of https://www.toptal.com/developers/gitignore/api/react,nextjs

 

keys.json 이 핵심이다. 이건 안만들어줌 ㅠㅠ 

 

이걸 해주니까 2개로 줄어듬!!!