From bfb84b7d035e7d77dcb22650d513f2d1f71c2c4a Mon Sep 17 00:00:00 2001 From: Benedikt Scheffbuch Date: Wed, 9 Apr 2025 08:28:17 +0200 Subject: [PATCH] chore(docs): Update docs/tooling/local-dev/debugging.md to include new default start script Co-authored-by: Patrik Oldsberg Signed-off-by: Benedikt Scheffbuch --- docs/tooling/local-dev/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tooling/local-dev/debugging.md b/docs/tooling/local-dev/debugging.md index 16b65d159c..2629ce4f75 100644 --- a/docs/tooling/local-dev/debugging.md +++ b/docs/tooling/local-dev/debugging.md @@ -63,7 +63,7 @@ In your `.vscode/launch.json`, add a new entry with the following, "request": "launch", // Indicates that the debugger should launch the application (as opposed to attaching to an already running process). "cwd": "${workspaceFolder}", // Sets the current working directory to the root of the workspace. "runtimeExecutable": "yarn", // Specifies the runtime to execute the application. In this case, it uses `yarn` to run the script. - "args": ["dev", "--inspect"], // Arguments passed to the `yarn` command. Here, it runs `yarn dev` with the `--inspect` flag to enable debugging. + "args": ["start", "--inspect"], // Arguments passed to the `yarn` command. Here, it runs `yarn start` with the `--inspect` flag to enable debugging. "skipFiles": ["/**"], // Tells the debugger to skip stepping into Node.js internal files during debugging. "console": "integratedTerminal" // Specifies that the debugger should use the integrated terminal for input/output. }