diff --git a/ui/.vscode/launch.json b/ui/.vscode/launch.json new file mode 100644 index 0000000..91156ea --- /dev/null +++ b/ui/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Verwendet IntelliSense zum Ermitteln möglicher Attribute. + // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen. + // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Chrome mit Advent22 UI starten", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/ui/.vscode/tasks.json b/ui/.vscode/tasks.json new file mode 100644 index 0000000..2cd5033 --- /dev/null +++ b/ui/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "serve", + "problemMatcher": [], + "label": "UI starten", + "detail": "vue-cli-service serve" + } + ] +} \ No newline at end of file