Files
docs/.devcontainer/devcontainer.json

21 lines
329 B
JSON
Raw Normal View History

2025-11-10 16:48:04 +08:00
{
"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"
}