.gitignore 675 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. .yarn/install-state.gz
  7. .pnpm-store/*
  8. /.idea/*
  9. !/.idea/runConfigurations
  10. # editor (local / personal — team shared configs can be committed instead if you prefer)
  11. .vscode/
  12. # testing
  13. /coverage
  14. # next.js
  15. /.next/
  16. /out/
  17. # production
  18. /build
  19. # misc
  20. .DS_Store
  21. *.pem
  22. # debug
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. # local env files
  27. .env*.local
  28. # vercel
  29. .vercel
  30. # typescript
  31. *.tsbuildinfo
  32. next-env.d.ts
  33. .env
  34. /media
  35. # Playwright
  36. node_modules/
  37. /test-results/
  38. /playwright-report/
  39. /blob-report/
  40. /playwright/.cache/
  41. # pnpm
  42. /.pnpm-store/