.gitignore 456 B

1234567891011121314151617181920212223242526
  1. .DS_Store
  2. node_modules
  3. /dist
  4. # local env files
  5. .env.local
  6. .env.*.local
  7. # Log files
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. # Editor directories and files
  12. .idea
  13. .vscode
  14. *.suo
  15. *.ntvs*
  16. *.njsproj
  17. *.sln
  18. *.sw?
  19. # APIs used in this example is simple and stable enough.
  20. # There shouldn't be risk of compatibility unless the major version of some library changed.
  21. # To compress the package size, just exclude the package-lock.json file.
  22. package-lock.json