.gitignore 361 B

1234567891011121314151617181920212223242526272829
  1. *cert
  2. *Backend
  3. .DS_Store
  4. # Website node modules and build output
  5. Website/package-lock.json
  6. Website/.editorconfig
  7. Website/node_modules
  8. Website/.nuxt
  9. Website/dist/
  10. Website/_nuxt
  11. # local env files
  12. .env.local
  13. .env.*.local
  14. # Log files
  15. npm-debug.log*
  16. yarn-debug.log*
  17. yarn-error.log*
  18. # Editor directories and files
  19. .idea
  20. .vscode
  21. *.suo
  22. *.ntvs*
  23. *.njsproj
  24. *.sln
  25. *.sw*