.gitignore 442 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. gql/
  3. .env
  4. # dependencies
  5. /node_modules
  6. /.pnp
  7. .pnp.js
  8. # testing
  9. /coverage
  10. # next.js
  11. /.next/
  12. /out/
  13. # production
  14. /build
  15. # misc
  16. .DS_Store
  17. *.pem
  18. # debug
  19. npm-debug.log*
  20. yarn-debug.log*
  21. yarn-error.log*
  22. # local env files
  23. .env*.local
  24. # vercel
  25. .vercel
  26. # typescript
  27. *.tsbuildinfo
  28. next-env.d.ts
  29. /test-results/
  30. /playwright-report/
  31. /playwright/.cache/
  32. .idea/