像 vue/cli 这样使用 vite 搭建脚手架时,是否可以手动 select 功能?
Is it possible to manually select features when scaffolding using vite like the vue/cli does?
就像在 Vue CLI 中一样 - 我希望在使用 vite 搭建脚手架时能够手动 select 特性。可以吗
我浏览了 vite 文档,但找不到类似的内容。
Vue CLI asking if I want to manually select Features
不,搭建 Vite 项目的官方命令 (npm init vite
) 使用 @vitejs/create-vite
,它不会提示个别功能(与 Vue CLI 不同)。
它只提示:
- project name
- overwrite existing directory
- package name
- framework(例如 Vue、Svelte 等)
- variant(例如,Vue with Vanilla JavaScript,Vue with TypeScript)
就像在 Vue CLI 中一样 - 我希望在使用 vite 搭建脚手架时能够手动 select 特性。可以吗
我浏览了 vite 文档,但找不到类似的内容。
Vue CLI asking if I want to manually select Features
不,搭建 Vite 项目的官方命令 (npm init vite
) 使用 @vitejs/create-vite
,它不会提示个别功能(与 Vue CLI 不同)。
它只提示:
- project name
- overwrite existing directory
- package name
- framework(例如 Vue、Svelte 等)
- variant(例如,Vue with Vanilla JavaScript,Vue with TypeScript)