.gitignore 458 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. # local env files
  16. .env.local
  17. .env.*.local
  18. .eslintcache
  19. logs
  20. *.log
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*
  24. pnpm-debug.log*
  25. lerna-debug.log*
  26. vite.config.mts.*
  27. vite.config.mjs.*
  28. vite.config.js.*
  29. vite.config.ts.*
  30. # Editor directories and files
  31. .idea
  32. # .vscode
  33. *.suo
  34. *.ntvs*
  35. *.njsproj
  36. *.sln
  37. *.sw?