12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "Vue",
- "build": {
- "dockerfile": "../examples.Dockerfile"
- },
- "workspaceFolder": "/workspaces/astro/examples/framework-vue",
- "portsAttributes": {
- "4321": {
- "label": "Application",
- "onAutoForward": "openPreview"
- }
- },
- "forwardPorts": [4321],
- "postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",
- "waitFor": "postCreateCommand",
- "postAttachCommand": {
- "Server": "pnpm start --host"
- },
- "customizations": {
- "codespaces": {
- "openFiles": ["src/pages/index.astro"]
- },
- "vscode": {
- "extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
- }
- }
- }
|