From a75488ac1081339bf50154512411d410b08f1888 Mon Sep 17 00:00:00 2001 From: Matthew Ruzzi <68619790+matthewruzzi@users.noreply.github.com> Date: Sat, 1 Feb 2025 22:05:13 +0000 Subject: [PATCH] Add devcontainer.json --- .devcontainer/devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..3475d22ed --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm", + "features": { + "ghcr.io/devcontainers/features/hugo:1": { + "extended": true, + "version": "latest" + } + }, + "forwardPorts": [ + 6969 + ], + "postCreateCommand": "npm install" +} \ No newline at end of file