Adds dev server vscode launcher.

This commit is contained in:
2025-04-11 13:38:51 -07:00
parent 894f379c8f
commit 0a697ef78a

17
.vscode/launch.json vendored Normal file
View File

@@ -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"
}
}
]
}