From 379a963d012a2bcb651e8ebdc54f8e21baaf4e19 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 14 Jul 2022 12:06:20 -0700 Subject: [PATCH] [docs] npm create needs @latest tag (#7687) --- site/content/tutorial/01-introduction/07-making-an-app/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 68b54e33f5..4ba5908137 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 @@ -7,7 +7,7 @@ This tutorial is designed to get you familiar with the process of writing compon 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/)... ```bash -npm create vite my-app -- --template svelte +npm create vite@latest my-app -- --template svelte ``` ...or one of the [community-maintained integrations](https://sveltesociety.dev/tools).