_gitignore 499 B

12345678910111213141516171819202122232425262728293031
  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. <%_ } _%>
  8. <%_ if (rootOptions.plugins && rootOptions.plugins['@vue/cli-plugin-e2e-cypress']) { _%>
  9. /tests/e2e/videos/
  10. /tests/e2e/screenshots/
  11. <%_ } _%>
  12. # local env files
  13. .env.local
  14. .env.*.local
  15. # Log files
  16. npm-debug.log*
  17. yarn-debug.log*
  18. yarn-error.log*
  19. # Editor directories and files
  20. .idea
  21. .vscode
  22. *.suo
  23. *.ntvs*
  24. *.njsproj
  25. *.sln
  26. *.sw?