devcontainer for frontend development.
includes:
- node.js v22
- git
- github cli
- os-dependencies for playwright
create a .devcontainer/devcontainer.json
file in the repository root:
{
"image": "ghcr.io/acdh-oeaw/devcontainer-frontend:22",
"customizations": {
"vscode": {
"extensions": [
// vs code extensions, which should be pre-installed.
]
}
}
}