diff options
author | innovaker <[email protected]> | 2020-12-03 01:32:54 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2020-12-08 00:44:07 -0500 |
commit | a9f257cdecf7ffa2edb082e5080dbdfea047e82b (patch) | |
tree | ba9987e5b3bd152058b06ac79313043a54385016 /.devcontainer/devcontainer.json | |
parent | 784ddfc6208447b19b3eb888c0c20d4c28f82753 (diff) | |
download | zmk-a9f257cdecf7ffa2edb082e5080dbdfea047e82b.tar.gz zmk-a9f257cdecf7ffa2edb082e5080dbdfea047e82b.zip |
feat(devcontainer): add forwardPorts 3000
Required for testing the documentation with the host's browser.
PR: #477
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r-- | .devcontainer/devcontainer.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7a1308fe0f..788addbe0e 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] } |