From 236d9b825337035e5617493cac27c041e7503ef9 Mon Sep 17 00:00:00 2001 From: Mask2501 Date: Wed, 5 Feb 2025 12:12:23 +0000 Subject: [PATCH 1/2] Create launch.json --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..05fa73b63 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,9 @@ + + { + "command": "npm start", + "name": "Run npm start", + "request": "launch", + "type": "node-terminal" + } + + \ No newline at end of file From 111a62844e5f730c6a4c3c5c58dd2e38015e9cd3 Mon Sep 17 00:00:00 2001 From: Mask2501 Date: Wed, 5 Feb 2025 13:04:55 +0000 Subject: [PATCH 2/2] Update launch.json --- .vscode/launch.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 05fa73b63..3cb86ff60 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,20 @@ "command": "npm start", "name": "Run npm start", "request": "launch", - "type": "node-terminal" - } - + "type": "node-terminal", + "configurations": [ + { + "command": "npm start", + "name": "Run npm start", + "request": "launch", + "type": "node-terminal" + }, + { + "name": "Launch Edge", + "request": "launch", + "type": "msedge", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + } + \ No newline at end of file