.gitignore 439 B

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