🐛 fix(launch.json): remove wildcard from url property to fix debugging issue

The wildcard in the url property was causing issues with debugging the frontend. Removing the wildcard ensures that the debugger is attached to the correct URL.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-14 15:12:19 -03:00
commit 2bd3d6b3de

2
.vscode/launch.json vendored
View file

@ -35,7 +35,7 @@
"name": "Debug Frontend",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/*",
"url": "http://localhost:3000/",
"webRoot": "${workspaceRoot}/src/frontend"
}
]