# .gitignore

# Ignore node_modules directory
node_modules/

# Ignore the build output directory (e.g., dist)
dist/

# Ignore environment variables file
.env

# Ignore any log files
*.log

# Ignore any editor/IDE configuration files
.vscode/
.idea/

# Ignore operating system files
.DS_Store
Thumbs.db

# Ignore any npm/yarn debug logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Ignore any temporary files
*.tmp
*.swp
*.swo