1
0
forked from devstar/docs
Files
docs/.devcontainer/devcontainer.json

25 lines
503 B
JSON

{
"name": "dev-vitepress",
"image": "node:20-alpine",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"vue.volar",
"vue.vscode-typescript-vue-plugin",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode"
]
}
},
"portsAttributes": {
"5173": {
"label": "vitepress debug",
"onAutoForward": "notify"
}
},
"postCreateCommand": "apk add git && npm install && npm add -D vitepress",
"postAttachCommand": "npm run dev"
}