From 0a697ef78ad32f7735e1ad1b85270fc11000f914 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Fri, 11 Apr 2025 13:38:51 -0700 Subject: [PATCH] Adds dev server vscode launcher. --- .vscode/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a56c211 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Hugo Server", + "type": "node-terminal", + "request": "launch", + "command": "hugo server -D", + "cwd": "${workspaceFolder}", + "serverReadyAction": { + "pattern": "Web Server is available at //localhost:(\\d+)", + "uriFormat": "http://localhost:%s", + "action": "openExternally" + } + } + ] +} \ No newline at end of file