From bf84b5bf256c92a6af86c5510bf81f7722f07dc5 Mon Sep 17 00:00:00 2001 From: parml Date: Mon, 2 Dec 2024 18:48:02 +0200 Subject: [PATCH] Correct create svelte 4 project command (#14498) People visiting v4.svelte.dev are interested in pre-5 svelte. Latest version of `create-svelte` package provides no functionality to create a project (it's a notice to use v5). Provided materials created for v4 and earlier need not be simply thrown away, creating a pre-v5 project should still be possible. `6.4.0` seems to be the last version of `create-svelte` package that can be used to create a v4 svelte project. --- documentation/docs/01-getting-started/01-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/01-getting-started/01-introduction.md b/documentation/docs/01-getting-started/01-introduction.md index 38f9db12e4..ccf8ad8ead 100644 --- a/documentation/docs/01-getting-started/01-introduction.md +++ b/documentation/docs/01-getting-started/01-introduction.md @@ -11,7 +11,7 @@ If that's not you (yet), you may prefer to visit the [interactive tutorial](/tut We recommend using [SvelteKit](https://kit.svelte.dev/), the official application framework from the Svelte team: ``` -npm create svelte@latest myapp +npm create svelte@6.4.0 myapp cd myapp npm install npm run dev