From 241167e0efbf60909b68e6bf33de0d9d19e144fc Mon Sep 17 00:00:00 2001 From: Xin Date: Wed, 16 Aug 2023 20:49:59 +0100 Subject: [PATCH] chore: use universal image in devcontainer.json --- .devcontainer/devcontainer.json | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3e0be4a..d1e8ce3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,12 +1,5 @@ { - "image": "mcr.microsoft.com/devcontainers/go:1", - "features": { - "ghcr.io/devcontainers/features/hugo:1": { - "extended": true, - "version": "0.116.1" - }, - "ghcr.io/devcontainers/features/node:1": {} - }, + "image": "mcr.microsoft.com/vscode/devcontainers/universal:linux", "customizations": { "vscode": { "extensions": [ @@ -14,7 +7,8 @@ "esbenp.prettier-vscode", "bradlc.vscode-tailwindcss", "tamasfe.even-better-toml", - "budparr.language-hugo-vscode" + "budparr.language-hugo-vscode", + "pkief.material-icon-theme" ] } },