website/.devcontainer/devcontainer.json
ndsboy 4bca29d3c3
Some checks are pending
Build Astro / 🧪 Astro check (push) Waiting to run
initial commit
2025-02-22 16:59:06 +00:00

18 lines
461 B
JSON

{
"name": "swabsite",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers-community/features/deno": {}
},
"containerUser": "vscode",
"containerEnv": {
"ASTRO_TELEMETRY_DISABLED": "true"
},
"postStartCommand": "deno task install",
"runArgs": ["--userns=keep-id", "--security-opt=label=disable"],
"customizations": {
"vscode": {
"extensions": ["astro-build.astro-vscode"]
}
}
}