.gitignore 538 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. /.idea/*
  8. !/.idea/runConfigurations
  9. # testing
  10. /coverage
  11. # next.js
  12. /.next/
  13. /out/
  14. # production
  15. /build
  16. # misc
  17. .DS_Store
  18. *.pem
  19. # debug
  20. npm-debug.log*
  21. yarn-debug.log*
  22. yarn-error.log*
  23. # local env files
  24. .env*.local
  25. # vercel
  26. .vercel
  27. # typescript
  28. *.tsbuildinfo
  29. next-env.d.ts
  30. .env
  31. /media
  32. # Playwright
  33. node_modules/
  34. /test-results/
  35. /playwright-report/
  36. /blob-report/
  37. /playwright/.cache/