From f75c1ffbaf40d7bfd449409980f01c7ba7a42e89 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Fri, 2 Jun 2023 14:45:22 -0500 Subject: Update scaffolding instructions (#104) --- docs/src/content/docs/getting-started.mdx | 6 +++--- 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 ``` @@ -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 ``` @@ -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 ``` 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 ``` [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/starlight/tree/main/examples/basics) -- cgit