feat: 添加 wwwroot 目錄到 .gitignore
防止使用者上傳的圖片檔案和靜態內容被意外提交到版本控制: - wwwroot/ - 整個靜態檔案目錄 - **/wwwroot/images/ - 圖片上傳目錄 - **/wwwroot/uploads/ - 其他上傳檔案 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
ae5453df43
commit
8abbab4a86
|
|
@ -57,6 +57,11 @@ next-env.d.ts
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.sqlite3
|
*.sqlite3
|
||||||
|
|
||||||
|
# Static files and user uploads
|
||||||
|
wwwroot/
|
||||||
|
**/wwwroot/images/
|
||||||
|
**/wwwroot/uploads/
|
||||||
|
|
||||||
# IDE files
|
# IDE files
|
||||||
.vscode/
|
.vscode/
|
||||||
.idea/
|
.idea/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue