This commit is contained in:
2022-12-15 00:00:32 +01:00
parent 9b344b4e16
commit 01190c5ff2
19 changed files with 230 additions and 66 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -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 \"localhost/dog\" starten",
"url": "http://localhost:3000/dog",
"webRoot": "${workspaceFolder}"
}
]
}