summaryrefslogtreecommitdiff
path: root/.devcontainer/with-vite-plugin-pwa
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-vite-plugin-pwa
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-vite-plugin-pwa')
-rw-r--r--.devcontainer/with-vite-plugin-pwa/devcontainer.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/with-vite-plugin-pwa/devcontainer.json b/.devcontainer/with-vite-plugin-pwa/devcontainer.json
index 54d9a5c6a..d716cded0 100644
--- a/.devcontainer/with-vite-plugin-pwa/devcontainer.json
+++ b/.devcontainer/with-vite-plugin-pwa/devcontainer.json
@@ -7,13 +7,13 @@
"workspaceFolder": "/workspaces/astro/examples/with-vite-plugin-pwa",
"portsAttributes": {
- "3000": {
+ "4321": {
"label": "Application",
"onAutoForward": "openPreview"
}
},
- "forwardPorts": [3000],
+ "forwardPorts": [4321],
"postCreateCommand": "pnpm install && cd /workspaces/astro && pnpm run build",