diff --git a/.vscode/launch.json b/.vscode/launch.json index cfb0a95..23bcb1e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -86,5 +86,22 @@ "PYTHONPATH": "${workspaceFolder}" } }, + { + "name": "Debug: nodejs web", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": [ + "dev" + ], + "cwd": "${workspaceFolder}/web", + "console": "integratedTerminal" + }, + ], + "compounds": [ + { + "name": "Launch Deerflow", + "configurations": ["Debug: server", "Debug: web"] + } ] -} \ No newline at end of file +}