Public Access
1
0
Files
11ty-site/.vscode/launch.json
2025-09-01 21:33:47 -04:00

22 lines
455 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Eleventy",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start"
],
"port": 9229,
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "Web Server running at (http://localhost:[0-9]+)",
"uriFormat": "%s",
"action": "openExternally"
}
}
]
}