.gitignore 405 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. .umi/
  13. # Testing
  14. coverage
  15. # Turbo
  16. .turbo
  17. # Vercel
  18. .vercel
  19. # Build Outputs
  20. .next/
  21. out/
  22. build
  23. dist
  24. # Debug
  25. npm-debug.log*
  26. yarn-debug.log*
  27. yarn-error.log*
  28. # Misc
  29. .DS_Store
  30. *.pem