diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f2e9fa3..091d861 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,21 +1,25 @@ { - "name": "Node.js", + "name": "dev-vitepress", "image": "node:20-alpine", "customizations": { "vscode": { "settings": {}, "extensions": [ - "streetsidesoftware.code-spell-checker" + "vue.volar", + "vue.vscode-typescript-vue-plugin", + "bradlc.vscode-tailwindcss", + "esbenp.prettier-vscode" ] } }, "portsAttributes": { - "3000": { - "label": "Hello Remote World", + "5173": { + "label": "vitepress debug", "onAutoForward": "notify" } }, + "postCreateCommand": "apk add git && npm install && npm add -D vitepress", "postAttachCommand": "npm run docs:dev" } \ No newline at end of file