From a43384a09e0eafc839d490687e56b872ab9b8dc2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 19 Jun 2025 12:41:14 +0000 Subject: [PATCH] feat(dev): add frontend and api to launch config --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7968ff4ae..304e639c4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,14 @@ "version": "0.2.0", "configurations": [ { - "name": "Launch", + "name": "Launch frontend dev", + "type": "node-terminal", + "request": "launch", + "command": "pnpm run dev", + "cwd": "${workspaceRoot}/frontend" + }, + { + "name": "Launch API", "type": "go", "request": "launch", "mode": "auto",