fix debug

This commit is contained in:
Mario Peters
2023-09-01 20:10:08 +02:00
parent 2563db88b8
commit 41ab58f78a

10
.vscode/launch.json vendored
View File

@@ -4,11 +4,19 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"urlFilter": "http://localhost:5173/*",
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:5174",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}"
}
]