From f9cbb835974bb725489430fcdb492bea20495a33 Mon Sep 17 00:00:00 2001 From: NuclearRedeye Date: Tue, 19 Nov 2024 21:44:36 +0000 Subject: [PATCH] fix: unable to debug in firefox --- .vscode/launch.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a475f21..fffd0ce 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,7 @@ "configurations": [ { "name": "Debug", - "type": "chrome", + "type": "firefox", "request": "launch", "url": "http://localhost:8080", "webRoot": "${workspaceRoot}/out/debug", @@ -11,7 +11,11 @@ "hidden": false, "group": "", "order": 1 - } + }, + "pathMappings": [{ + "url": "http://localhost:8080", + "path": "${workspaceFolder}" + }] } ] }