# Build artifacts and dependencies — never belong in an image build context.
# Without this, the 67GB Rust target/ dir is sent as context on every build.

# Rust
target/
**/target/

# Node — reinstalled (npm ci) / regenerated (next build) inside the image
node_modules/
**/node_modules/
.next/
**/.next/

# VCS & editor
.git/
.gitignore
.vscode/
.idea/

# Local artifacts
*.tar
*.log
*.bak
