Files
website-enchun-mgr/.gitignore
pukpuk 8e8ff0bfc7 chore: fix gitignore pattern to exclude build artifacts
Update .gitignore to properly ignore dist directories at any level by
changing /dist to **/dist pattern. Also remove previously tracked
.astro/types.d.ts file which should not be in version control.

- Fix: Change /dist to **/dist to match nested dist directories
- Remove: apps/frontend/.astro/types.d.ts from tracking
- Ensures build artifacts are properly excluded across the project

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-07 16:18:37 +08:00

45 lines
508 B
Plaintext

# Dependencies
/node_modules
**/node_modules
# Build output
**/dist
/build
**/.astro
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.dev.vars
# IDE and editor directories
.idea/
.vscode/
# OS-generated files
.DS_Store
.DS_Store?
Thumbs.db
# Temporary files
*.tmp
# AI and tool directories
.codex/
.gemini/
.turbo/
.wrangler/
# OS-generated files in subdirs
**/.DS_Store