From 7406dd09af8518d0dae0165efa7a4392f620e963 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sun, 12 Feb 2023 10:21:31 +0100 Subject: [PATCH] Update launch.json --- .vscode/launch.json | 36 ++++++++---------------------------- 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 38ceddc..9262d6c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,37 +5,17 @@ "version": "0.2.0", "configurations": [ { - "name": "Launch Edge", + "name": "HTTP Server", + "type": "python", "request": "launch", + "module": "http.server", + "justMyCode": true + }, + { "type": "msedge", - "file": "${workspaceFolder}/index.html" - }, - { - "name": "Launch index.html", - "type": "firefox", "request": "launch", - "reAttach": true, - "file": "${workspaceFolder}/index.html" - }, - { - "name": "Launch localhost", - "type": "firefox", - "request": "launch", - "reAttach": true, - "url": "http://localhost/index.html", - "webRoot": "${workspaceFolder}" - }, - { - "name": "Attach", - "type": "firefox", - "request": "attach" - }, - { - "name": "Launch WebExtension", - "type": "firefox", - "request": "launch", - "reAttach": true, - "addonPath": "${workspaceFolder}" + "name": "Edge", + "file": "${workspaceFolder}/cv.html" } ] }