layout; routing; login

This commit is contained in:
2022-12-22 00:29:06 +01:00
parent 85d99d8023
commit c894022b31
13 changed files with 116 additions and 47 deletions

10
.vscode/launch.json vendored
View File

@ -4,11 +4,19 @@
// 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:3000/dog\" starten",
"url": "http://localhost:3000/dog",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Chrome mit \"localhost/dog\" starten",
"url": "http://localhost:3000/dog",
"url": "http://localhost/dog",
"webRoot": "${workspaceFolder}"
}
]