54 lines
472 B
Plaintext
54 lines
472 B
Plaintext
# Dependencies (installed inside container)
|
|
|
|
node_modules
|
|
|
|
# Nuxt build artifacts
|
|
|
|
.nuxt
|
|
.output
|
|
|
|
# Vite / Nuxt caches
|
|
|
|
.cache
|
|
node_modules/.cache
|
|
|
|
# Logs
|
|
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
bun-debug.log*
|
|
|
|
# Env files (copy explicitly if needed)
|
|
|
|
.env
|
|
.env.*
|
|
|
|
# OS / editor junk
|
|
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea
|
|
.vscode
|
|
|
|
# Git
|
|
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# Tests / coverage
|
|
|
|
coverage
|
|
*.spec.*
|
|
*.test.*
|
|
|
|
# Temporary files
|
|
|
|
*.tmp
|
|
*.swp
|