From 2bd3d6b3de3922d5fac4e4c03b6dd6aa57ec73f3 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 14 Jun 2023 15:12:19 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(launch.json):=20remove=20wil?= =?UTF-8?q?dcard=20from=20url=20property=20to=20fix=20debugging=20issue=20?= =?UTF-8?q?The=20wildcard=20in=20the=20url=20property=20was=20causing=20is?= =?UTF-8?q?sues=20with=20debugging=20the=20frontend.=20Removing=20the=20wi?= =?UTF-8?q?ldcard=20ensures=20that=20the=20debugger=20is=20attached=20to?= =?UTF-8?q?=20the=20correct=20URL.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 27ab4603f..3b458aa81 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -35,7 +35,7 @@ "name": "Debug Frontend", "type": "chrome", "request": "launch", - "url": "http://localhost:3000/*", + "url": "http://localhost:3000/", "webRoot": "${workspaceRoot}/src/frontend" } ]