From 2a605a50151979faa96255a89bc0a57981ff5b0e Mon Sep 17 00:00:00 2001 From: James Taylor Date: Fri, 9 Aug 2024 17:22:38 +0100 Subject: [PATCH] Fix npm install in dev container Signed-off-by: James Taylor --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6068c617..f35a9f77 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,7 +20,7 @@ ], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "sudo chown node node_modules && npm install" + "postCreateCommand": "sudo chown node node_modules && npm ci --legacy-peer-deps" // Configure tool-specific properties. // "customizations": {},