diff options
author | 2023-09-26 16:13:59 -0700 | |
---|---|---|
committer | 2023-09-26 16:13:59 -0700 | |
commit | 2a14d9e5c978a798af270dcbdcf96460b8e093ee (patch) | |
tree | 6335c617de51e0dadaabee0a9791eb11266b199f /docs/guides/ecosystem | |
parent | 549d01a4d6f31fbf442efe8d64a5f84ae3870787 (diff) | |
download | bun-2a14d9e5c978a798af270dcbdcf96460b8e093ee.tar.gz bun-2a14d9e5c978a798af270dcbdcf96460b8e093ee.tar.zst bun-2a14d9e5c978a798af270dcbdcf96460b8e093ee.zip |
Update astro.md to v3 (#6070)
Diffstat (limited to 'docs/guides/ecosystem')
-rw-r--r-- | docs/guides/ecosystem/astro.md | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/docs/guides/ecosystem/astro.md b/docs/guides/ecosystem/astro.md index dac2bc369..995b036aa 100644 --- a/docs/guides/ecosystem/astro.md +++ b/docs/guides/ecosystem/astro.md @@ -10,7 +10,7 @@ $ bun create astro │ ◠ ◡ ◠ We're glad to have you on board. ╰─────╯ - astro v2.10.5 Launch sequence initiated. + astro v3.1.4 Launch sequence initiated. dir Where should we create your new project? ./fumbling-field @@ -55,21 +55,17 @@ By default, Bun will run the dev server with Node.js. To use the Bun runtime ins ```sh $ bunx --bun astro dev - 🚀 astro v2.10.5 started in 200ms + 🚀 astro v3.1.4 started in 200ms - ┃ Local http://localhost:3000/ + ┃ Local http://localhost:4321/ ┃ Network use --host to expose - -01:48:34 PM [content] Watching src/content/ for changes -01:48:34 PM [content] Types generated -01:48:34 PM [astro] update /.astro/types.d.ts ``` --- -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. Astro will hot-reload your app as you edit your source files. +Open [http://localhost:4321](http://localhost:4321) with your browser to see the result. Astro will hot-reload your app as you edit your source files. -{% image src="https://github.com/vitejs/vite/assets/3084745/bb1d5063-32f4-4598-b33e-50b44a1c4e8a" caption="An Astro starter app running on Bun" %} +{% image src="https://imgur.com/Dswiu6w" caption="An Astro v3 starter app running on Bun" %} --- |