Skip to content

Commit 995732f

Browse files
authored
Update Vite Svelte and React onboarding commmand (#3626)
1 parent 3db83b1 commit 995732f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

sites/skeleton.dev/src/content/docs/get-started/installation/vite-react.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ import ProcessStep from '@components/docs/ProcessStep.astro';
2727
### Create a Project
2828
Start by creating a new [Vite](https://vite.dev/guide/#scaffolding-your-first-vite-project) project. This will install React and Typescript.
2929
```console
30-
npm create vite@latest --template react-ts my-skeleton-app
31-
cd my-skeleton-app
30+
npm create vite@latest
31+
- Set your project named as desired
32+
- Set React as the framework
33+
- Set Typescript as the variant
34+
cd {yourProjectName}
3235
npm install
3336
```
3437
</ProcessStep>

sites/skeleton.dev/src/content/docs/get-started/installation/vite-svelte.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@ import ProcessStep from '@components/docs/ProcessStep.astro';
2727
### Create a Project
2828
Start by creating a new [Vite](https://vite.dev/guide/#scaffolding-your-first-vite-project) project. This will install Svelte and Typescript.
2929
```console
30-
npm create vite@latest --template svelte-ts my-skeleton-app
31-
cd my-skeleton-app
30+
npm create vite@latest
31+
- Set your project named as desired
32+
- Set Svelte as the framework
33+
- Set Typescript as the variant
34+
cd {yourProjectName}
3235
npm install
3336
```
3437
</ProcessStep>

0 commit comments

Comments
 (0)