.gitignore 600 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. /.pnp
  5. .pnp.*
  6. .yarn/*
  7. !.yarn/patches
  8. !.yarn/plugins
  9. !.yarn/releases
  10. !.yarn/versions
  11. # testing
  12. /coverage
  13. # next.js
  14. /.next/
  15. /out/
  16. # production
  17. /build
  18. # misc
  19. .DS_Store
  20. *.pem
  21. .vscode
  22. # debug
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. .pnpm-debug.log*
  27. # env files (can opt-in for committing if needed)
  28. .env
  29. .env.production
  30. .env.local
  31. .env.development.local
  32. .env.test
  33. .env.test.local
  34. # vercel
  35. .vercel
  36. # typescript
  37. *.tsbuildinfo
  38. next-env.d.ts
  39. # .well-known
  40. /public/.well-known
  41. ~