.gitignore 419 B

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