.gitignore 397 B

1234567891011121314151617181920212223242526272829303132333435
  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. # testing
  7. /coverage
  8. # production
  9. /build
  10. /dist
  11. dist.*
  12. build.*
  13. package-lock.json
  14. *.zip
  15. # misc
  16. .DS_Store
  17. .env.local
  18. .env.development.local
  19. .env.test.local
  20. .env.production.local
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*
  24. # others
  25. .vscode
  26. .eslintcache
  27. .git
  28. .idea