1
0
forked from devstar/docs

add .devcontainer/devcontainer.json

This commit is contained in:
孟宁
2025-11-10 16:48:04 +08:00
parent 2c6fe9e7a3
commit 8d110627f0

View File

@@ -0,0 +1,21 @@
{
"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"
}