From b7c0e50f709e66557c7039a0321f937f94329c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles=20He=CC=81on?= Date: Tue, 3 Sep 2024 09:39:52 -0400 Subject: [PATCH] fix: makes debugger work --- .vscode/launch.json | 3 +-- .vscode/tasks.json | 11 ----------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json index b3b07e6..981b83d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,8 +6,7 @@ "request": "launch", "name": "Launch Chrome", "url": "http://localhost:8085", - "webRoot": "${workspaceFolder}", - "preLaunchTask": "start" + "webRoot": "${workspaceFolder}/frontend" } ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 564443f..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "start", - "type": "npm", - "script": "start", - "isBackground": true - } - ] -}