Public Access
1
0
Files
11ty-site/.vscode/launch.json

18 lines
385 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Docker: Attach to Node",
"type": "node",
"request": "attach",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app",
"restart": false,
"preLaunchTask": "docker-compose-up",
"postDebugTask": "docker-compose-down"
}
]
}