From bc58e3a8431dfa00034b4d112423eb481c955cb5 Mon Sep 17 00:00:00 2001 From: Doc Oliver <37000451+docyx@users.noreply.github.com> Date: Tue, 13 Jul 2021 00:10:33 -0400 Subject: [PATCH] chore: update migration installation instructions for Vite `@vitejs/app` is now [deprecated](https://github.com/vitejs/vite/pull/4179). We should instruct users to use the new `create-vite` package instead. --- src/guide/migration/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/migration/introduction.md b/src/guide/migration/introduction.md index 082c7f64f6..661b377438 100644 --- a/src/guide/migration/introduction.md +++ b/src/guide/migration/introduction.md @@ -29,7 +29,7 @@ If you want to quickly try out Vue 3 in a new project: - Scaffold via [Vite](https://github.com/vitejs/vite): ```bash - npm init @vitejs/app hello-vue3 # OR yarn create @vitejs/app hello-vue3 + npm init vite hello-vue3 -- --template vue # OR yarn create vite hello-vue3 --template vue ``` - Scaffold via [vue-cli](https://cli.vuejs.org/):