diff options
author | Nate Moore | 2023-06-02 14:45:22 -0500 |
---|---|---|
committer | GitHub | 2023-06-02 21:45:22 +0200 |
commit | f75c1ffbaf40d7bfd449409980f01c7ba7a42e89 (patch) | |
tree | 8bf8fe2fb958918fc9f2f860b04b8fd4cf374088 | |
parent | 9a9b0a49a511d459f3050ee1e7342d0160b256d9 (diff) | |
download | IT.starlight-f75c1ffbaf40d7bfd449409980f01c7ba7a42e89.tar.gz IT.starlight-f75c1ffbaf40d7bfd449409980f01c7ba7a42e89.tar.bz2 IT.starlight-f75c1ffbaf40d7bfd449409980f01c7ba7a42e89.zip |
Update scaffolding instructions (#104)
-rw-r--r-- | docs/src/content/docs/getting-started.mdx | 6 | ||||
-rw-r--r-- | examples/basics/README.md | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/content/docs/getting-started.mdx b/docs/src/content/docs/getting-started.mdx index 1a019d3a..3e8a276c 100644 --- a/docs/src/content/docs/getting-started.mdx +++ b/docs/src/content/docs/getting-started.mdx @@ -19,7 +19,7 @@ Starlight is built on top of the [Astro](https://astro.build) all-in-one framewo ```sh # create a new project with npm -npm create astro -- --template withastro/starlight/examples/basics +npm create astro@latest -- --template starlight ``` </TabItem> @@ -27,7 +27,7 @@ npm create astro -- --template withastro/starlight/examples/basics ```sh # create a new project with pnpm -pnpm create astro --template withastro/starlight/examples/basics +pnpm create astro --template starlight ``` </TabItem> @@ -35,7 +35,7 @@ pnpm create astro --template withastro/starlight/examples/basics ```sh # create a new project with yarn -yarn create astro --template withastro/starlight/examples/basics +yarn create astro --template starlight ``` </TabItem> diff --git a/examples/basics/README.md b/examples/basics/README.md index fa229a17..2cd6cd60 100644 --- a/examples/basics/README.md +++ b/examples/basics/README.md @@ -1,7 +1,7 @@ # Starlight Starter Kit: Basics ``` -npm create astro@latest -- --template withastro/starlight/examples/basics +npm create astro@latest -- --template starlight ``` [](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) |