.gitignore 357 B

123456789101112131415161718192021222324252627282930313233
  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. .vite
  7. # testing
  8. /coverage
  9. # production
  10. dist
  11. cache
  12. dist-ssr
  13. # misc
  14. .DS_Store
  15. *.local
  16. npm-debug.log*
  17. yarn-debug.log*
  18. yarn-error.log*
  19. .pnpm-debug.log*
  20. .eslintcache
  21. # IDE
  22. .idea
  23. .env*
  24. !.env.template
  25. vite.config.ts.timestamp*