.gitignore 399 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. # Local env files
  7. .env
  8. .env.local
  9. .env.development.local
  10. .env.test.local
  11. .env.production.local
  12. # Testing
  13. coverage
  14. # Turbo
  15. .turbo
  16. # Vercel
  17. .vercel
  18. # Build Outputs
  19. .next/
  20. out/
  21. build
  22. dist
  23. # Debug
  24. npm-debug.log*
  25. yarn-debug.log*
  26. yarn-error.log*
  27. # Misc
  28. .DS_Store
  29. *.pem