From 8abbab4a86056a7066fffcb33864431452e22cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=84=AD=E6=B2=9B=E8=BB=92?= Date: Wed, 24 Sep 2025 22:54:09 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20wwwroot=20?= =?UTF-8?q?=E7=9B=AE=E9=8C=84=E5=88=B0=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 防止使用者上傳的圖片檔案和靜態內容被意外提交到版本控制: - wwwroot/ - 整個靜態檔案目錄 - **/wwwroot/images/ - 圖片上傳目錄 - **/wwwroot/uploads/ - 其他上傳檔案 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 7820f68..8c66ac1 100644 --- a/.gitignore +++ b/.gitignore @@ -57,6 +57,11 @@ next-env.d.ts *.sqlite *.sqlite3 +# Static files and user uploads +wwwroot/ +**/wwwroot/images/ +**/wwwroot/uploads/ + # IDE files .vscode/ .idea/