# Vercel Ignore File
# Files and directories to exclude from Vercel deployment

# Development files
.env.local
.env.development
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Testing
coverage/
.nyc_output/

# Build artifacts
dist/
build/
.cache/

# Documentation (optional - remove if you want docs in deployment)
*.md
!README.md
!DEPLOYMENT.md

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~

# OS files
.DS_Store
Thumbs.db

# Git
.git/
.gitignore

# Dependencies (will be installed during build)
node_modules/

# Docker
Dockerfile
docker-compose.yml
.dockerignore

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml

# Other deployment configs
render.yml
railway.json
heroku.yml

# Development scripts
scripts/
dev/

# Test files
test/
tests/
**/*.test.js
**/*.spec.js

# Linting
.eslintcache
.prettierignore

# Misc
.husky/
