From 4b3f65ec205bbc17e47b3eb07df4f343b52e7ee4 Mon Sep 17 00:00:00 2001 From: Colin Dawson Date: Mon, 16 Feb 2026 19:02:04 +0000 Subject: [PATCH] Altered VSCode so that both the UI and the swagger page load when debugging is launched. --- .vscode/launch.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index df152b3..07a5eee 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,12 +8,13 @@ "name": "Debug React App", "type": "pwa-chrome", "request": "launch", - "url": "http://localhost:3001", "webRoot": "${workspaceFolder}/src", "runtimeExecutable": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe", "runtimeArgs": [ "--remote-debugging-port=9222", - "--user-data-dir=C:\\ChromeDebug" + "--user-data-dir=C:\\ChromeDebug", + "http://localhost:3001", + "http://localhost:3001/swagger" ], "preLaunchTask": "Start All", "postDebugTask": "Stop All Tasks"