Files
docs-test/.devcontainer/devcontainer.json

25 lines
484 B
JSON
Raw Normal View History

2025-11-10 16:48:04 +08:00
{
2025-11-10 10:13:38 +00:00
"name": "dev-vitepress",
2025-11-10 16:48:04 +08:00
"image": "node:20-alpine",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
2025-11-10 10:13:38 +00:00
"vue.volar",
"vue.vscode-typescript-vue-plugin",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode"
2025-11-10 16:48:04 +08:00
]
}
},
"portsAttributes": {
2025-11-10 10:13:38 +00:00
"5173": {
"label": "vitepress debug",
2025-11-10 16:48:04 +08:00
"onAutoForward": "notify"
}
},
2025-11-10 10:13:38 +00:00
"postCreateCommand": "apk add git && npm install && npm add -D vitepress",
2025-11-10 16:48:04 +08:00
"postAttachCommand": "npm run docs:dev"
}