From 6a864346e7f375c68a2001d89970a68bec4d0a44 Mon Sep 17 00:00:00 2001 From: Zibbp Date: Sun, 18 Feb 2024 17:21:30 +0000 Subject: [PATCH] build(devcontainer): add gitlens extension --- .devcontainer/devcontainer.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a2c14a7..b45a645 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,16 @@ // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [3000] - "appPort": ["0.0.0.0:3000:3000"] + "appPort": [ + "0.0.0.0:3000:3000" + ], + "customizations": { + "vscode": { + "extensions": [ + "eamodio.gitlens" + ] + } + } // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "yarn install",