create-vite
vs create-vue
for scaffolding a VueJS project
#10483
-
I have noticed that the VueJS documentation recommends using To make matters more confusing, the Vuetify docs also recommend using What should someone do? Are there separate use cases for each of them? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
you should be fine with Vite option, since has a lot of improvements for building time/hot reload speed, the difference is more or less the building process. I guess in the future vite will be the standard for creation. |
Beta Was this translation helpful? Give feedback.
-
You should use |
Beta Was this translation helpful? Give feedback.
You should use
create-vue
. We have now added an option increate-vite
linking to it when you choosevue
.create-vite
is a way to test Vite with your favorite framework, but it is explicitly barebones. You don't get a testing setup, linting, formatting, etc. It isn't a replacement in React for CRA for example. Each framework community should create and maintain its own starter, the maintenance cost is too high to do this in Vite core. This is wherecreate-vue
comes in, and it is the official starter. I think Vuetify docs should be updated to point tocreate-vue
too, maybe you could create an issue or PR in their repo.