Files
med-plan-assistant/.devcontainer/devcontainer.json

31 lines
642 B
JSON

{
"name": "React Dev Container",
"build": {
"dockerfile": "Dockerfile",
"args": {
// Set CACHE_BUST in your local env when you want to force a rebuild
"CACHE_BUST": "${localEnv:CACHE_BUST}"
}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
}
},
"extensions": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
},
"forwardPorts": [3000],
"portsAttributes": {
"3000": {
"label": "React Dev Server",
"onAutoForward": "notify"
}
},
//"postCreateCommand": "npm install",
"remoteUser": "node"
}