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