docs: update .gitignore in directory structure (#24338)

This commit is contained in:
Joe Hawes 2023-11-16 06:06:30 -08:00 committed by GitHub
parent 55e0f38dde
commit 41ad85ed6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,11 @@ We recommend having a `.gitignore` file that has **at least** the following entr
```bash [.gitignore] ```bash [.gitignore]
# Nuxt dev/build outputs # Nuxt dev/build outputs
.output .output
.data
.nuxt .nuxt
.nitro
.cache
dist
# Node dependencies # Node dependencies
node_modules node_modules
@ -27,6 +31,7 @@ logs
.DS_Store .DS_Store
# Local env files # Local env files
.env
.env.* .env.*
!.env.example !.env.example
``` ```