docs: improved recommended gitignore list (#21451)

This commit is contained in:
Albaraa Hasan 2023-06-08 08:59:48 +03:00 committed by GitHub
parent c4c98d950f
commit 32c8e3bf27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -15,8 +15,18 @@ We recommend having a `.gitignore` file that has **at least** the following entr
# Nuxt dev/build outputs
.output
.nuxt
# Node dependencies
node_modules
# System files
# Logs
logs
*.log
# Misc
.DS_Store
# Local env files
.env.*
!.env.example
```