.gitignore 730 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. # next.js
  9. /.next/
  10. /out/
  11. # production
  12. /build
  13. # dist
  14. /dist/
  15. /report/
  16. /public/uploads
  17. /tmp/
  18. # dist (for GROWI v4.x and below)
  19. /public/*.chunk.js
  20. /public/*.chunk.js.LICENSE
  21. /public/*.bundle.js
  22. /public/manifest.json
  23. /public/dll
  24. /public/js
  25. /public/styles
  26. /src/*/__build__/
  27. /__build__/**
  28. /src/*/dist/
  29. /.awcache
  30. .webpack.json
  31. /compiled/
  32. # misc
  33. .DS_Store
  34. *.pem
  35. .Trash-*
  36. ehthumbs.db
  37. Thumbs.db
  38. # debug
  39. npm-debug.log*
  40. yarn-debug.log*
  41. yarn-error.log*
  42. # local env files
  43. .env.local
  44. .env.development.local
  45. .env.test.local
  46. .env.production.local
  47. # IDE, dev #
  48. .idea
  49. *.orig
  50. *.code-workspace