.gitignore 307 B

1234567891011121314151617181920212223242526
  1. # See https://help.github.com/ignore-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. # testing
  5. /coverage
  6. #cache
  7. /.cache
  8. # production
  9. /build
  10. /dist
  11. # misc
  12. .DS_Store
  13. .env.local
  14. .env.development.local
  15. .env.test.local
  16. .env.production.local
  17. npm-debug.log*
  18. yarn-debug.log*
  19. yarn-error.log*