From 99d15fe730eec6c5d8b2976a7a50c20f367e8978 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sat, 24 Sep 2022 14:55:08 +0200 Subject: [PATCH] Add minimal test index.html --- .vscode/launch.json | 35 +++++++++++++++++++++++++++++++++++ index.html | 12 ++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 index.html diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0f47d87 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + // 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": [ + { + "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}" + } + ] +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..53ceaa6 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + Benjamin’s Personal Website + + +

Test

+ +