super-productivity/.devcontainer/devcontainer.json
2025-05-09 12:43:16 +02:00

13 lines
353 B
JSON

{
"name": "Super Productivity Dev Container",
"image": "mcr.microsoft.com/devcontainers/javascript-node:20",
"postCreateCommand": "npm i -g @angular/cli && npm i",
"postStartCommand": "ng serve",
"forwardPorts": [4200],
"portsAttributes": {
"4200": {
"label": "Angular Dev Server",
"onAutoForward": "openBrowser"
}
}
}