mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
21 lines
568 B
JSON
21 lines
568 B
JSON
|
// https://code.visualstudio.com/docs/devcontainers/containers
|
||
|
// https://containers.dev/implementors/json_reference/
|
||
|
{
|
||
|
"name": "nuxt-devcontainer",
|
||
|
"dockerFile": "Dockerfile",
|
||
|
"features": {},
|
||
|
"customizations": {
|
||
|
"vscode": {
|
||
|
"settings": {},
|
||
|
"extensions": [
|
||
|
"ms-azuretools.vscode-docker",
|
||
|
"dbaeumer.vscode-eslint",
|
||
|
"github.vscode-github-actions",
|
||
|
"vue.volar"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"postStartCommand": "pnpm install && pnpm build:stub",
|
||
|
"mounts": ["type=volume,target=${containerWorkspaceFolder}/node_modules"]
|
||
|
}
|