diff --git a/npm-packages/docs/docs/quickstart/svelte.mdx b/npm-packages/docs/docs/quickstart/svelte.mdx index 8dcf3190a..9e716b181 100644 --- a/npm-packages/docs/docs/quickstart/svelte.mdx +++ b/npm-packages/docs/docs/quickstart/svelte.mdx @@ -15,18 +15,15 @@ Learn how to query data from Convex in a Svelte app. - Create a SvelteKit app using the `npx create svelte@latest` command. + Create a SvelteKit app using the `npx sv create` command. - Other sets of options will work with the library as long as Svelte 5 is used but for this quickstart guide: - - - For "Which Svelte app template," choose **"Skeleton project."** - - For "Add type checking with TypeScript," choose **"Yes, using TypeScript syntax."** - - For "Select additional options," enable **"Try the Svelte 5 preview."** + - For "Which template would you like?" choose **"SvelteKit minimal".** + - For "Add type checking with TypeScript," choose **"Yes, using TypeScript syntax".**

```sh - npm create svelte@latest my-app + npx sv create my-app ```
@@ -35,7 +32,7 @@ Learn how to query data from Convex in a Svelte app. To get started, install the `convex` and `convex-svelte` packages. ```sh - cd my-app && npm install convex convex-svelte + cd my-app && npm install -D convex convex-svelte ``` @@ -121,7 +118,7 @@ Learn how to query data from Convex in a Svelte app.