From d5d49634981ac3826a07ecd8dc794493ac3429de Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 26 Jun 2025 12:30:09 +0200 Subject: [PATCH] fix(dev): zed frontend task --- .zed/tasks.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.zed/tasks.json b/.zed/tasks.json index 90940bd44..851aabbb5 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -1,12 +1,12 @@ // Project tasks configuration. See https://zed.dev/docs/tasks for documentation. [ - { - "label": "build and run api", - "command": "mage build && ./vikunja" - }, - { - "label": "run frontend dev", - "command": "pnpm dev", - "cwd": "./frontend" - } + { + "label": "build and run api", + "command": "mage build && ./vikunja" + }, + { + "label": "run frontend dev", + "command": "pnpm dev", + "cwd": "$ZED_WORKTREE_ROOT/frontend" + } ]