Correct the login route.

This commit is contained in:
2020-09-26 17:30:01 +02:00
parent f51079eeb4
commit 54495c0689
6 changed files with 52 additions and 35 deletions

10
.vscode/launch.json vendored
View File

@@ -5,13 +5,15 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program with debugger",
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
"cwd": "${workspaceFolder}",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start"
],
"program": "${workspaceFolder}/src/js/app.js"
"port": 5858
}
]
}