From b0c525a7b6c900793be068f4766f009b96e5faeb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 10 Mar 2022 02:50:21 +0100 Subject: [PATCH] :hammer: Create VSC `launch.json` --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..12f6db7 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Preview example page", + "type": "firefox", + "request": "launch", + "reAttach": true, + "file": "${workspaceFolder}/index.html", + } + ] +} \ No newline at end of file