From e62ecce538c0e54b34e2bfce5a59c39ea03ab1e5 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 5 Dec 2022 18:47:12 +0100 Subject: [PATCH] Add debug settings --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d3661cc --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Website in Chrome", + "url": "http://localhost:3000", + "webRoot": "${workspaceFolder}/lib/static", + "preLaunchTask": "Build" + } + ] +}