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
1 changed files with 5 additions and 0 deletions

View File

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