From 42e841d1e602d81f9c217621b0011095e244f0b1 Mon Sep 17 00:00:00 2001 From: Anand Patel Date: Thu, 29 Feb 2024 00:57:44 +0000 Subject: [PATCH] Add the fact that dev server depends on building Vue components --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c4f8a1542..fff9f33fa 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -15,7 +15,7 @@ { "label": "Run Dev Server", "type": "shell", - "dependsOn": ["Run Migrations"], + "dependsOn": ["Run Migrations", "Yarn Build"], "command": "python3 manage.py runserver", }, {