From eef125f6c1d586ec4ed4a75ae8a93c54870a2e12 Mon Sep 17 00:00:00 2001 From: gaac510 <74474003+gaac510@users.noreply.github.com> Date: Tue, 20 Dec 2022 08:47:31 +1100 Subject: [PATCH] [docs] update outdated SvelteKit release info (#8128) Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- .../tutorial/01-introduction/07-making-an-app/text.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/site/content/tutorial/01-introduction/07-making-an-app/text.md b/site/content/tutorial/01-introduction/07-making-an-app/text.md index 4ba5908137..dc3fe7adad 100644 --- a/site/content/tutorial/01-introduction/07-making-an-app/text.md +++ b/site/content/tutorial/01-introduction/07-making-an-app/text.md @@ -4,15 +4,13 @@ title: Making an app This tutorial is designed to get you familiar with the process of writing components. But at some point, you'll want to start writing components in the comfort of your own text editor. -First, you'll need to integrate Svelte with a build tool. We recommend using [Vite](https://vitejs.dev/) with [vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/)... +First, you'll need to integrate Svelte with a build tool. We recommend using [SvelteKit](https://kit.svelte.dev), which sets up [Vite](https://vitejs.dev/) with [vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/) for you... ```bash -npm create vite@latest my-app -- --template svelte +npm create svelte@latest myapp ``` -...or one of the [community-maintained integrations](https://sveltesociety.dev/tools). - -> [SvelteKit](https://kit.svelte.dev) is the official application framework from the Svelte team. It's currently in development, but if you don't mind using pre-1.0 software then it's the recommended way to build Svelte apps. +There are also a number of [community-maintained integrations](https://sveltesociety.dev/tools). Don't worry if you're relatively new to web development and haven't used these tools before. We've prepared a simple step-by-step guide, [Svelte for new developers](/blog/svelte-for-new-developers), which walks you through the process.