.gitignore 322 B

12345678910111213141516171819202122232425
  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. /.idea
  7. # testing
  8. /coverage
  9. # production
  10. /build
  11. # by
  12. # misc
  13. .DS_Store
  14. .env.local
  15. .env.development.local
  16. .env.test.local
  17. .env.production.local
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*