2023-09-15 10:09:21 +00:00
|
|
|
// 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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2023-12-19 12:21:11 +00:00
|
|
|
"postStartCommand": "pnpm install && pnpm dev:prepare",
|
|
|
|
"mounts": [
|
|
|
|
"type=volume,target=${containerWorkspaceFolder}/node_modules"
|
|
|
|
]
|
2023-09-15 10:09:21 +00:00
|
|
|
}
|