In a few weeks ago i was able to debug easily ussing this config but now in every project i had to mannually change. would be nice if this the PHP extension could work with this again. (.vscode/launch.json)
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003, // Default port for Xdebug 3
"pathMappings": {
"${workspaceFolder}": "${workspaceFolder}" // Local matches server
},
"log": true
}
]
}