From 4fa17c5a08d6048755fc841e08c7eab5ad4c39f0 Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Thu, 18 May 2023 08:44:00 +0200 Subject: Fix create command with full template path Would be good to alias to `--template starlight/basics` in create-astro eventually but this works for now. --- docs/src/content/docs/getting-started.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/content/docs/getting-started.mdx b/docs/src/content/docs/getting-started.mdx index 035e964d..f031be2d 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 starlight +npm create astro -- --template withastro/starlight/examples/basics ``` @@ -27,7 +27,7 @@ npm create astro -- --template starlight ```sh # create a new project with pnpm -pnpm create astro --template starlight +pnpm create astro --template withastro/starlight/examples/basics ``` @@ -35,7 +35,7 @@ pnpm create astro --template starlight ```sh # create a new project with pnpm -yarn create astro --template starlight +yarn create astro --template withastro/starlight/examples/basics ``` -- cgit