ovdashboard/ui/.vscode/tasks.json

23 lines
292 B
JSON
Raw Normal View History

2022-09-09 16:13:04 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Vue UI",
"type": "shell",
"command": "vue",
"args": [
"ui"
],
"problemMatcher": []
2022-09-10 13:11:48 +00:00
},
{
"label": "Vue Serve",
"type": "shell",
"command": "vue",
"args": [
"serve"
],
"problemMatcher": []
2022-09-09 16:13:04 +00:00
}
]
}