Uecko_ERP/.vscode/tasks.json
2025-09-22 10:13:59 +02:00

21 lines
439 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "web:dev",
"type": "shell",
"command": "pnpm --filter web dev",
"isBackground": true,
"problemMatcher": {
"owner": "vite",
"pattern": [{ "regexp": "." }],
"background": {
"activeOnStart": true,
"beginsPattern": ".*Local:.*http://.*:5173/.*",
"endsPattern": ".*ready in .*"
}
}
}
]
}