.gitignore 479 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. node_modules
  2. .DS_Store
  3. dist
  4. dist-ssr
  5. coverage
  6. *.local
  7. **/.vitepress/cache
  8. .cache
  9. .turbo
  10. dev-dist
  11. .stylelintcache
  12. yarn.lock
  13. package-lock.json
  14. .VSCodeCounter
  15. **/backend-mock/data
  16. # local env files
  17. .env.local
  18. .env.*.local
  19. .eslintcache
  20. logs
  21. *.log
  22. npm-debug.log*
  23. yarn-debug.log*
  24. yarn-error.log*
  25. pnpm-debug.log*
  26. lerna-debug.log*
  27. vite.config.mts.*
  28. vite.config.mjs.*
  29. vite.config.js.*
  30. vite.config.ts.*
  31. # Editor directories and files
  32. .idea
  33. # .vscode
  34. *.suo
  35. *.ntvs*
  36. *.njsproj
  37. *.sln
  38. *.sw?