diff options
author | 2023-08-01 16:31:42 +0100 | |
---|---|---|
committer | 2023-08-08 11:02:51 +0100 | |
commit | f01eb585e7c972d940761309b1595f682b6922d2 (patch) | |
tree | b4f35e770de62c1c0584d8cb57cbb13f70e811bb /.devcontainer/with-markdown-plugins | |
parent | dc13687bb45fdd21e1aded198230f19854b40f17 (diff) | |
download | astro-f01eb585e7c972d940761309b1595f682b6922d2.tar.gz astro-f01eb585e7c972d940761309b1595f682b6922d2.tar.zst astro-f01eb585e7c972d940761309b1595f682b6922d2.zip |
feat: change default port to 4321 (#7874)
Co-authored-by: Chris Swithinbank <swithinbank@gmail.com>
Diffstat (limited to '.devcontainer/with-markdown-plugins')
-rw-r--r-- | .devcontainer/with-markdown-plugins/devcontainer.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/with-markdown-plugins/devcontainer.json b/.devcontainer/with-markdown-plugins/devcontainer.json index bb7d7c28e..21894a77c 100644 --- a/.devcontainer/with-markdown-plugins/devcontainer.json +++ b/.devcontainer/with-markdown-plugins/devcontainer.json @@ -7,13 +7,13 @@ "workspaceFolder": "/workspaces/astro/examples/with-markdown-plugins", "portsAttributes": { - "3000": { + "4321": { "label": "Application", "onAutoForward": "openPreview" } }, - "forwardPorts": [3000], + "forwardPorts": [4321], "postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build", |