Public Access
1
0

fix: de-docker dev

This commit is contained in:
2025-09-01 21:33:47 -04:00
parent d584330722
commit 2f6464eceb
5 changed files with 20 additions and 113 deletions

20
.vscode/launch.json vendored
View File

@@ -2,16 +2,20 @@
"version": "0.2.0",
"configurations": [
{
"name": "Docker: Attach to Node",
"name": "Debug Eleventy",
"type": "node",
"request": "attach",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"start"
],
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app",
"restart": false,
"preLaunchTask": "docker-compose-up",
"postDebugTask": "docker-compose-down"
"console": "integratedTerminal",
"serverReadyAction": {
"pattern": "Web Server running at (http://localhost:[0-9]+)",
"uriFormat": "%s",
"action": "openExternally"
}
}
]
}