.gitignore 346 B

123456789101112131415161718192021222324252627
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. notes/
  3. upload_site.sh
  4. # dependencies
  5. /node_modules
  6. /.pnp
  7. .pnp.js
  8. .eslintcache
  9. # testing
  10. /coverage
  11. # production
  12. /build
  13. # misc
  14. .DS_Store
  15. .env.local
  16. .env.development.local
  17. .env.test.local
  18. .env.production.local
  19. npm-debug.log*
  20. yarn-debug.log*
  21. yarn-error.log*