.gitignore 426 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.*
  6. .yarn/*
  7. !.yarn/patches
  8. !.yarn/plugins
  9. !.yarn/releases
  10. !.yarn/versions
  11. # testing
  12. /coverage
  13. # next.js
  14. /.next/
  15. /out/
  16. # production
  17. /build
  18. dist
  19. # misc
  20. .DS_Store
  21. *.pem
  22. # debug
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. # vercel
  27. .vercel
  28. # typescript
  29. *.tsbuildinfo
  30. next-env.d.ts
  31. # IDE
  32. .vscode