From c92909a83b42e3f0050a5779ed27448c6edfa580 Mon Sep 17 00:00:00 2001 From: Christian Schindler Date: Sat, 20 Apr 2024 11:09:11 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9E.vscode/launch.json=E2=80=9C=20=C3=A4n?= =?UTF-8?q?dern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c4529b1..2fec9c9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,19 @@ { "version": "0.2.0", "configurations": [ + + { + "name": "[Compound] Debug Frontend without Backend", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}/frontend/src", + "preLaunchTask": "Start Frontend", + "postDebugTask": "Terminate All Tasks", + "sourceMaps": true, + "skipFiles": ["node_modules/**"], + "runtimeExecutable": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" + }, { "type": "node", "request": "launch", @@ -47,7 +60,7 @@ "request": "launch", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/frontend/src", - "preLaunchTask": "Start Frontend", + "preLaunchTask": "only Frontend", "postDebugTask": "Terminate All Tasks", "sourceMaps": true, "skipFiles": ["node_modules/**"], @@ -57,7 +70,7 @@ "compounds": [ { "name": "Debug Frontend and Backend", - "configurations": ["Debug Backend", "Debug Frontend"] + "configurations": ["Debug Backend", "[Compound] Debug Frontend without Backend"] } ] } \ No newline at end of file