From 896b537f2a552eeaee5ffe987d51bca83fc925c2 Mon Sep 17 00:00:00 2001 From: nonoakij <45055030+nonoakij@users.noreply.github.com> Date: Wed, 22 May 2024 17:41:28 +0900 Subject: [PATCH] chore: Update launch.json --- .vscode/launch.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6bb0429..99fa036 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,8 +2,8 @@ "version": "0.2.0", "configurations": [ { - "command": "./docs/node_modules/.bin/astro dev --root ./docs", "name": "docs: start development server", + "command": "./docs/node_modules/.bin/astro dev --root ./docs", "request": "launch", "type": "node-terminal" }, @@ -20,6 +20,16 @@ "port": 3002, "type": "node", "cwd": "${workspaceFolder}/apps/workspace" + }, + { + "name": "backend: attach debugger", + "type": "node", + "request": "attach", + "port": 8001, + "cwd": "${workspaceFolder}/backend/src", + "resolveSourceMapLocations": null, + "attachExistingChildren": false, + "autoAttachChildProcesses": false } ] }