trihub-ernaehrung-backseatDevs/.devcontainer/devcontainer.json

22 lines
579 B
JSON

{
"name": "Ernaehrungsberatung",
"image": "mcr.microsoft.com/devcontainers/javascript-node:24-bookworm",
"remoteUser": "node",
"forwardPorts": [5173],
"portsAttributes": {
"5173": {
"label": "Webseite",
"onAutoForward": "notify"
}
},
"postCreateCommand": "if [ -f package-lock.json ]; then npm ci; else npm install; fi",
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"EditorConfig.EditorConfig"
]
}
}
}