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