feat(cli): support vite.config.ts (#11223)

This commit is contained in:
neverland
2022-11-05 20:39:51 +08:00
committed by GitHub
parent d9fe675af4
commit fe07c10729
5 changed files with 52 additions and 15 deletions
+7 -4
View File
@@ -177,17 +177,16 @@ When set to `true`, `export * from 'xxx'` will be used to export all modules and
### build.configureVite
- Type: `(config: InlineConfig): InlineConfig`
- Type: `(config: InlineConfig): InlineConfig | undefined`
- Default: `undefined`
Custom vite config(`@vant/cli>= 4.0.0`)
Custom [vite config](https://vitejs.dev/config/), requires `@vant/cli>= 4.0.0`.
```js
module.exports = {
build: {
configureVite(config) {
// add vite plugin
config.plugins.push(vitePluginXXX);
config.server.port = 3000;
return config;
},
},
@@ -214,6 +213,10 @@ module.exports = {
};
```
Note that you are not allowed to import vite plugins in `vant.config.mjs`, because the file will be bundled into the website code.
If you need to configure some vite plugins, please create a `vite.config.ts` file in the same directory of `vant.config.mjs`, in which you can add any vite configuration (this feature requires @vant/cli 5.1.0).
### build.packageManager
- Type: `'npm' | 'yarn' | 'pnpm'`