-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
switch from vue-cli to vite #1000
Comments
Thanks for the suggestion! The I would like to carefully examine the possibility of switching to At the moment, we are using 提案ありがとうございます!
新しい技術を取り入れるとメンテナンス性が下がるリスクがあるので、 いまのところ、 |
vue-cli-plugin-viteなるものもあるらしいです。 |
I made a prototype with vite: sevenc-nanashi/voicevox:poc/migrate-pnpm-vite Viteで試作してみました:sevenc-nanashi/voicevox:poc/migrate-pnpm-vite |
内容
I suggest we switch to
vite
for a faster and seamless DX.vite
is a blazingly fast bundler which makes use of the ES module. Unlikewebpack
,vite
doesn't load all the resources at startup, but only the essentials and load the rest on demand. As a result, its startup and HMR time are much shorter thanwebpack
, whichvue-cli
is based on.For anyone curious, you can create a
electron-vite
app to see how fast it can beThe text was updated successfully, but these errors were encountered: