diff options
author | Chris Swithinbank | 2023-05-18 08:44:00 +0200 |
---|---|---|
committer | Chris Swithinbank | 2023-05-18 08:44:00 +0200 |
commit | 4fa17c5a08d6048755fc841e08c7eab5ad4c39f0 (patch) | |
tree | b049424e2b70a016519804911b7a0e94d1ddfc2d | |
parent | ed62e50f14a17220ff9432e2b0452361c8973fc5 (diff) | |
download | IT.starlight-4fa17c5a08d6048755fc841e08c7eab5ad4c39f0.tar.gz IT.starlight-4fa17c5a08d6048755fc841e08c7eab5ad4c39f0.tar.bz2 IT.starlight-4fa17c5a08d6048755fc841e08c7eab5ad4c39f0.zip |
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.
-rw-r--r-- | docs/src/content/docs/getting-started.mdx | 6 |
1 files 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 ``` </TabItem> @@ -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 ``` </TabItem> @@ -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 ``` </TabItem> |