From 52255d24b95a50f792303ab0035afed7ed73eea9 Mon Sep 17 00:00:00 2001 From: MichaelValwin Date: Sun, 1 Sep 2024 17:01:41 +0200 Subject: [PATCH] Testing for debug mode in vsc --- .vscode/launch.json | 6 +++--- test.html => index.html | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename test.html => index.html (100%) diff --git a/.vscode/launch.json b/.vscode/launch.json index fe30508..254dbb6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,9 +8,9 @@ "type": "firefox", "request": "launch", "name": "Debug chip8 emulator", - "webRoot": "${workspaceFolder}", "reAttach": true, - "url": "http://localhost:5500/test.html", + "url": "http://localhost:5500/", + "webRoot": "${workspaceFolder}", "pathMappings": [ { "url": "http://localhost:5500/dist", @@ -20,7 +20,7 @@ "url": "http://localhost:5500/src", "path": "${workspaceFolder}/src" } - ] + ], }, /* { diff --git a/test.html b/index.html similarity index 100% rename from test.html rename to index.html