From a9f257cdecf7ffa2edb082e5080dbdfea047e82b Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Thu, 3 Dec 2020 01:32:54 +0000 Subject: [PATCH] feat(devcontainer): add forwardPorts 3000 Required for testing the documentation with the host's browser. PR: #477 --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7a1308fe..788addbe 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,5 +7,6 @@ "extensions": ["ms-vscode.cpptools"], "settings": { "terminal.integrated.shell.linux": "/bin/bash" - } + }, + "forwardPorts": [3000] }