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