From c1028d3fcadc92a60d1b601fd3522c2f4ac9898e Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Wed, 27 Nov 2024 10:44:23 +0100 Subject: [PATCH] Run build commands at prebuild time --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e50752e..38dcab4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ "forwardPorts": [5173], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "yarn install && yarn build && yarn playwright install && sudo yarn playwright install-deps" + "updateContentCommand": "yarn install && yarn build && yarn playwright install && sudo yarn playwright install-deps" // Configure tool-specific properties. // "customizations": {},