From 3838be2ea34de3f613fb321c3d7571de20bdeeb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=84=AD=E6=B2=9B=E8=BB=92?= Date: Wed, 17 Sep 2025 16:12:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=8C=E5=96=84=20.gitignore=20?= =?UTF-8?q?=E8=A6=8F=E5=89=87=EF=BC=8C=E6=AD=A3=E7=A2=BA=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=20Next.js=20=E7=B7=A8=E8=AD=AF=E7=94=A2=E7=89=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 frontend/.next/ 和 frontend/out/ 忽略規則 - 避免 Next.js 編譯快取被意外提交到版本控制 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index c7ed3e2..fb94054 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ node_modules/ # next.js /.next/ /out/ +frontend/.next/ +frontend/out/ # production /build