-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devcontainer.json
More file actions
37 lines (37 loc) · 951 Bytes
/
.devcontainer.json
File metadata and controls
37 lines (37 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "r.obin.ch",
"image": "mcr.microsoft.com/devcontainers/typescript-node:24-bookworm",
"customizations": {
"vscode": {
"extensions": [
"astro-build.astro-vscode",
"vitest.explorer",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-german",
"esbenp.prettier-vscode",
"mgmcdermott.vscode-language-babel",
"dbaeumer.vscode-eslint",
"eliostruyf.vscode-front-matter",
"unifiedjs.vscode-mdx",
"github.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"vunguyentuan.vscode-css-variables",
"denoland.vscode-deno"
]
}
},
"forwardPorts": [
4321
],
"portsAttributes": {
"4321": {
"label": "Astro Dev Server"
}
},
"containerEnv": {
"ASTRO_TELEMETRY_DISABLED": "1"
},
"features": {
"ghcr.io/devcontainers-community/features/deno:1": {}
}
}