.gitignore 449 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. .qoder
  22. # Build Outputs
  23. .next/
  24. out/
  25. build
  26. dist
  27. # Debug
  28. npm-debug.log*
  29. yarn-debug.log*
  30. yarn-error.log*
  31. # Misc
  32. .DS_Store
  33. *.pem