Files
mmorales.photo/front/v2/.vscode/tasks.json
2025-08-25 18:52:59 +02:00

22 lines
434 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Start Node server with nvs latest",
"type": "shell",
"command": "nvs use latest && npm run start",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
}
}
]
}