.gitignore 369 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Dependencies
  2. node_modules/
  3. /.pnp
  4. .pnp.js
  5. # Testing
  6. /coverage
  7. # Production
  8. /build
  9. /dist
  10. # Misc
  11. .DS_Store
  12. .env.local
  13. .env.development.local
  14. .env.test.local
  15. .env.production.local
  16. # Logs
  17. npm-debug.log*
  18. yarn-debug.log*
  19. yarn-error.log*
  20. pnpm-debug.log*
  21. lerna-debug.log*
  22. # Editor directories and files
  23. .idea/
  24. .vscode/
  25. *.suo
  26. *.ntvs*
  27. *.njsproj
  28. *.sln
  29. *.sw?
  30. # Vite
  31. .vite/