58 lines
668 B
Plaintext
58 lines
668 B
Plaintext
|
|
# Ignore node modules (don't copy them into image)
|
|
node_modules
|
|
|
|
# Build output
|
|
dist
|
|
build
|
|
|
|
# Logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
*.log
|
|
|
|
# Env files (may contain secrets)
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE / editor folders
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
*.swp
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker files (don't include Dockerfile or .dockerignore in the build context)
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Package archives and keys
|
|
*.tgz
|
|
*.pem
|
|
*.key
|
|
|
|
# Coverage and caches
|
|
coverage
|
|
.cache
|
|
node_repl_history
|
|
|
|
# Temporary / OS-specific
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Misc
|
|
dist-frontend
|
|
dist-backend
|
|
|