1
0
forked from devstar/docs
Files
docs/.devcontainer/devcontainer.json
2025-11-10 16:48:04 +08:00

21 lines
329 B
JSON

{
"name": "Node.js",
"image": "node:20-alpine",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
},
"portsAttributes": {
"3000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
"postAttachCommand": "npm run docs:dev"
}