chore: update gitignore to exclude Next.js build artifacts and certificates
- Add web/.next and web/out to ignore list - Exclude backend/certbot and *.pem files - Prevents build artifacts from being tracked
This commit is contained in:
parent
da63a31c95
commit
66d1b802dd
1 changed files with 9 additions and 0 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -7,6 +7,15 @@ build/
|
||||||
.cache/
|
.cache/
|
||||||
.env*
|
.env*
|
||||||
|
|
||||||
|
# Next.js
|
||||||
|
web/.next/
|
||||||
|
web/out/
|
||||||
|
web/.cache/
|
||||||
|
|
||||||
|
# Build artifacts
|
||||||
|
backend/certbot/
|
||||||
|
*.pem
|
||||||
|
|
||||||
# Mobile/Flutter/Expo (if chosen later)
|
# Mobile/Flutter/Expo (if chosen later)
|
||||||
.gradle/
|
.gradle/
|
||||||
android/app/build/
|
android/app/build/
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue