.gitignore 486 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. node_modules/
  4. /.pnp
  5. .pnp.js
  6. # testing
  7. /coverage
  8. # next.js
  9. /.next/
  10. /out/
  11. # production
  12. /build
  13. /dist
  14. # misc
  15. .DS_Store
  16. *.pem
  17. # debug
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*
  21. # local env files
  22. .env.local
  23. .env.development.local
  24. .env.test.local
  25. .env.production.local
  26. # vercel
  27. .vercel
  28. # typescript
  29. *.tsbuildinfo
  30. # eslint
  31. .eslintcache
  32. # stylelint
  33. .stylelintcache
  34. .husky
  35. .yarn