| # Git | |
| .git | |
| .gitignore | |
| # Dependencies | |
| node_modules | |
| **/node_modules | |
| # Build outputs | |
| dist | |
| build | |
| .next | |
| out | |
| # Development | |
| .env | |
| .env.local | |
| .env.*.local | |
| *.log | |
| # IDE | |
| .vscode | |
| .idea | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Test | |
| coverage | |
| .nyc_output | |
| # Replit specific | |
| .replit | |
| .replitignore | |
| replit.md | |
| .replit-artifact | |
| # Vercel | |
| .vercel | |
| vercel.json | |
| # Attached assets | |
| attached_assets | |
| # Config | |
| .config | |
| # Agents | |
| .agents | |
| # Scripts | |
| scripts | |
| # Mockup sandbox (不需要部署) | |
| artifacts/mockup-sandbox | |
| # Turnstile solver (單獨部署) | |
| artifacts/turnstile-solver | |
| # API route (Vercel 專用) | |
| api | |