fix build task to launch dev version directly

This commit is contained in:
Ronja 2021-11-11 21:48:50 +01:00
parent bcb072ffb2
commit dc2b06f051

13
.vscode/tasks.json vendored
View file

@ -1,17 +1,14 @@
{ {
"tasks": [ "tasks": [
{ {
"type": "luxe", "label": "luxe: run dev",
"script": "run", "command": "D:\\tools\\.luxe\\modules\\luxe\\dev\\bin\\windows\\luxe.exe",
"problemMatcher": [ "args": ["run"],
"$luxe-absolute", "type": "shell",
"$luxe-relative"
],
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
}, }
"label": "luxe: run - Build & Run the project"
} }
] ]
} }