diff --git a/docs/tooling/local-dev/debugging.md b/docs/tooling/local-dev/debugging.md index 39981f2e54..65354442b2 100644 --- a/docs/tooling/local-dev/debugging.md +++ b/docs/tooling/local-dev/debugging.md @@ -56,19 +56,19 @@ In your `launch.json`, add a new entry with the following, ```jsonc { - "name": "Start Backend", - "type": "node", - "request": "launch", - "args": [ - "package", - "start" - ], - "cwd": "${workspaceFolder}/packages/backend", - "program": "${workspaceFolder}/node_modules/.bin/backstage-cli", - "skipFiles": [ - "/**" - ], - "console": "integratedTerminal" + "name": "Start Backend", + "type": "node", + "request": "launch", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "yarn", + "args": [ + "start-backend", + "--inspect" + ], + "skipFiles": [ + "/**" + ], + "console": "integratedTerminal" }, ```