_gitignore 548 B

12345678910111213141516171819202122232425262728293031323334
  1. .DS_Store
  2. node_modules
  3. /dist
  4. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-nightwatch']) { _%>
  5. /tests/e2e/reports/
  6. selenium-debug.log
  7. chromedriver.log
  8. geckodriver.log
  9. <%_ } _%>
  10. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-cypress']) { _%>
  11. /tests/e2e/videos/
  12. /tests/e2e/screenshots/
  13. <%_ } _%>
  14. # local env files
  15. .env.local
  16. .env.*.local
  17. # Log files
  18. npm-debug.log*
  19. yarn-debug.log*
  20. yarn-error.log*
  21. pnpm-debug.log*
  22. # Editor directories and files
  23. .idea
  24. .vscode
  25. *.suo
  26. *.ntvs*
  27. *.njsproj
  28. *.sln
  29. *.sw?