astro/.devcontainer/integration/devcontainer.json

22 lines
462 B
JSON
Raw Permalink Normal View History

{
"name": "Integration Package",
2023-02-23 15:36:28 +00:00
"build": {
"dockerfile": "../examples.Dockerfile"
},
"workspaceFolder": "/workspaces/astro/examples/integration",
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",
2023-02-23 15:36:28 +00:00
"waitFor": "postCreateCommand",
"customizations": {
"codespaces": {
"openFiles": ["index.ts"]
},
"vscode": {
"extensions": ["astro-build.astro-vscode", "esbenp.prettier-vscode"]
}
}
2023-02-23 15:36:28 +00:00
}