Gitignore file

A .gitignore file specifies intentionally untracked files that git should ignore. Learn more about it in the git documentation.

We recommend having a .gitignore file that has at least the following entries present:

.gitignore

  1. # Nuxt dev/build outputs
  2. .output
  3. .nuxt
  4. # Node dependencies
  5. node_modules
  6. # System files
  7. *.log