41 lines
458 B
Plaintext
41 lines
458 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Build output (rebuilt inside the image)
|
|
dist
|
|
dist-ssr
|
|
build
|
|
.cache
|
|
|
|
# Dependencies (reinstalled in the image)
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Editor / OS
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
|
|
# Env (never bake secrets into the image)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Misc
|
|
*.log
|
|
coverage
|
|
.eslintcache
|