- Added content/.gitkeep to track empty content directory - Updated .gitignore to allow .gitkeep but ignore other content files - Ensures content/ directory is visible on Git server - Maintains security by ignoring actual content files
27 lines
234 B
Plaintext
27 lines
234 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Build outputs
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Cache
|
|
.cache/
|
|
.sass-cache/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# No content
|
|
content/
|
|
!content/.gitkeep
|