summaryrefslogtreecommitdiff
path: root/.devcontainer/with-markdown-plugins
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2023-08-01 16:31:42 +0100
committerGravatar Emanuele Stoppa <my.burning@gmail.com> 2023-08-08 11:02:51 +0100
commitf01eb585e7c972d940761309b1595f682b6922d2 (patch)
treeb4f35e770de62c1c0584d8cb57cbb13f70e811bb /.devcontainer/with-markdown-plugins
parentdc13687bb45fdd21e1aded198230f19854b40f17 (diff)
downloadastro-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.json4
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",