Neue Datei .vscode/launch.json hinzugefügt und README.md aktualisiert

This commit is contained in:
Sebastian Frank 2024-04-10 08:28:08 +00:00
parent 1ebd1424e5
commit 2054870366
Signed by: apairon
SSH Key Fingerprint: SHA256:lYVOnGlR42QHj7wuqfFgGw8cKbfyZUpzeRDGVBBAHQU
2 changed files with 48 additions and 17 deletions

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

@ -0,0 +1,31 @@
{
// 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": [
{
"name": "Launch Firefox Remote",
"request": "launch",
"type": "firefox",
"url": "https://tibi_starter.code.testversion.online/",
"webRoot": "${workspaceFolder}/frontend",
"pathMappings": [
{
"url": "https://tibi_starter.code.testversion.online/",
"path": "${workspaceFolder}/frontend/"
}
]
},
{
"name": "Launch Edge",
"request": "launch",
"type": "msedge",
"url": "https://tibi_starter.code.testversion.online/",
"webRoot": "${workspaceFolder}/frontend",
"sourceMapPathOverrides": {
"../": "${webRoot}/"
}
}
]
}