mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
365 lines
7.1 KiB
Markdown
365 lines
7.1 KiB
Markdown
# 配置指南
|
||
|
||
- [配置指南](#----)
|
||
- [vant.config.mjs](#vantconfigmjs)
|
||
- [name](#name)
|
||
- [build.css.base](#buildcssbase)
|
||
- [build.css.preprocessor](#buildcsspreprocessor)
|
||
- [build.site.publicPath](#buildsitepublicpath)
|
||
- [build.srcDir](#buildsrcdir)
|
||
- [build.namedExport](#buildnamedexport)
|
||
- [build.configureVite](#buildconfigurevite)
|
||
- [build.packageManager](#buildpackagemanager)
|
||
- [site.title](#sitetitle)
|
||
- [site.logo](#sitelogo)
|
||
- [site.description](#sitedescription)
|
||
- [site.nav](#sitenav)
|
||
- [site.versions](#siteversions)
|
||
- [site.baiduAnalytics](#sitebaiduanalytics)
|
||
- [site.searchConfig](#sitesearchconfig)
|
||
- [site.hideSimulator](#sitehidesimulator)
|
||
- [site.simulator.url](#sitesimulatorurl)
|
||
- [site.htmlMeta](#sitehtmlmeta)
|
||
- [site.enableVConsole](#siteenablevconsole)
|
||
- [Postcss](#postcss)
|
||
- [默认配置](#-----1)
|
||
- [browserslist](#browserslist)
|
||
|
||
## vant.config.mjs
|
||
|
||
`vant.config.mjs` 中包含了 `vant-cli` 的打包配置和文档站点配置,请创建此文件并置于项目根目录下。下面是一份基本配置的示例:
|
||
|
||
```js
|
||
export default {
|
||
// 组件库名称
|
||
name: 'demo-ui',
|
||
// 构建配置
|
||
build: {
|
||
site: {
|
||
publicPath: '/demo-ui/',
|
||
},
|
||
},
|
||
// 文档站点配置
|
||
site: {
|
||
// 标题
|
||
title: 'Demo UI',
|
||
// 图标
|
||
logo: 'https://cdn.jsdelivr.net/npm/@vant/assets/logo.png',
|
||
// 描述
|
||
description: '示例组件库',
|
||
// 左侧导航
|
||
nav: [
|
||
{
|
||
title: '开发指南',
|
||
items: [
|
||
{
|
||
path: 'home',
|
||
title: '介绍',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
title: '基础组件',
|
||
items: [
|
||
{
|
||
path: 'my-button',
|
||
title: 'MyButton 按钮',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
};
|
||
```
|
||
|
||
### name
|
||
|
||
- Type: `string`
|
||
- Default: `''`
|
||
|
||
组件库名称,建议使用中划线分割,如 `demo-ui`。
|
||
|
||
### build.css.base
|
||
|
||
- Type: `string`
|
||
- Default: `'style/base.less'`
|
||
|
||
全局样式文件的路径,可以为相对路径或绝对路径。
|
||
|
||
相对路径基于 `src` 目录计算。
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
css: {
|
||
base: 'style/global.scss',
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### build.css.preprocessor
|
||
|
||
- Type: `string`
|
||
- Default: `'less'`
|
||
|
||
CSS 预处理器配置,目前支持 `less` 和 `sass` 两种预处理器,默认使用 `less`。
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
css: {
|
||
preprocessor: 'sass',
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### build.site.publicPath
|
||
|
||
- Type: `string`
|
||
- Default: `/`
|
||
|
||
等价于 vite 的 `build.outDir` 配置。
|
||
|
||
一般来说,我们的文档网站会部署在一个域名的子路径上,如 `https://my.github.io/demo-ui/`,这时候 `publicPath` 需要跟子路径保持一致,即 `/demo-ui/`。
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
site: {
|
||
publicPath: '/demo-ui/',
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### build.srcDir
|
||
|
||
- Type: `string`
|
||
- Default: `src`
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
srcDir: 'myDir',
|
||
},
|
||
};
|
||
```
|
||
|
||
### build.namedExport
|
||
|
||
- Type: `boolean`
|
||
- Default: `false`
|
||
|
||
是否通过 Named Export 对组件进行导出。
|
||
|
||
未开启此选项时,会通过 `export default from 'xxx'` 导出组件内部的默认模块。
|
||
|
||
开启此选项后,会通过 `export * from 'xxx'` 导出组件内部的所有模块、类型定义。
|
||
|
||
### build.configureVite
|
||
|
||
- Type: `(config: InlineConfig): InlineConfig`
|
||
- Default: `undefined`
|
||
|
||
vant-cli 使用 vite 来构建组件库和文档站点,通过 `configureVite` 选项可以自定义 vite 配置(从 4.0.0 版本开始支持)。
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
configureVite(config) {
|
||
// 添加一个自定义插件
|
||
config.plugins.push(vitePluginXXX);
|
||
return config;
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
在自定义配置时,可以通过 `process.env.BUILD_TARGET` 对构建目标进行区分:
|
||
|
||
```js
|
||
module.exports = {
|
||
build: {
|
||
configureVite(config) {
|
||
const { BUILD_TARGET } = process.env;
|
||
|
||
if (BUILD_TARGET === 'package') {
|
||
// 修改组件库构建配置
|
||
}
|
||
|
||
if (BUILD_TARGET === 'site') {
|
||
// 修改文档站点构建配置
|
||
}
|
||
|
||
return config;
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### build.packageManager
|
||
|
||
- Type: `'npm' | 'yarn' | 'pnpm'`
|
||
- Default: `undefined`
|
||
|
||
指定使用的包管理器。
|
||
|
||
### site.title
|
||
|
||
- Type: `string`
|
||
- Default: `''`
|
||
|
||
文档站点的标题。
|
||
|
||
### site.logo
|
||
|
||
- Type: `string`
|
||
- Default: `''`
|
||
|
||
文档站点的 Logo。
|
||
|
||
### site.description
|
||
|
||
- Type: `string`
|
||
- Default: `''`
|
||
|
||
标题下方的描述文案。
|
||
|
||
### site.nav
|
||
|
||
- Type: `object[]`
|
||
- Default: `undefined`
|
||
|
||
文档站点的左侧导航,数组中的每个对象表示一个导航分组。
|
||
|
||
```js
|
||
module.exports = {
|
||
site: {
|
||
nav: [
|
||
{
|
||
// 分组标题
|
||
title: '开发指南',
|
||
// 导航项
|
||
items: [
|
||
{
|
||
// 导航项路由
|
||
path: 'home',
|
||
// 导航项文案
|
||
title: '介绍',
|
||
// 是否隐藏当前页右侧的手机模拟器(默认不隐藏)
|
||
hideSimulator: true,
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
};
|
||
```
|
||
|
||
### site.versions
|
||
|
||
- Type: `object[]`
|
||
- Default: `undefined`
|
||
|
||
文档站点多版本配置,当组件库存在多个版本的文档时,可以通过`site.versions`在顶部导航配置一个版本切换按钮。
|
||
|
||
```js
|
||
module.exports = {
|
||
site: {
|
||
versions: [
|
||
{
|
||
label: 'v1',
|
||
link: 'https://youzan.github.io/vant/v1/',
|
||
},
|
||
],
|
||
},
|
||
};
|
||
```
|
||
|
||
### site.baiduAnalytics
|
||
|
||
- Type: `object`
|
||
- Default: `undefied`
|
||
|
||
文档网站的百度统计配置,添加这项配置后,会自动在构建文档网站时加载百度统计的脚本。
|
||
|
||
```js
|
||
module.exports = {
|
||
site: {
|
||
baiduAnalytics: {
|
||
// 打开百度统计 ->『管理』->『代码获取』
|
||
// 找到下面这串 URL: "https://hm.baidu.com/hm.js?xxxxx"
|
||
// 将 `xxxxx` 填写在 seed 中即可
|
||
seed: 'xxxxx',
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### site.searchConfig
|
||
|
||
- Type: `object`
|
||
- Default: `undefined`
|
||
|
||
文档网站的搜索配置,基于 algolia 提供的 docsearch 服务实现。
|
||
|
||
配置内容参见 [docsearch](https://docsearch.algolia.com/docs/behavior)。
|
||
|
||
### site.hideSimulator
|
||
|
||
- Type: `boolean`
|
||
- Default: `false`
|
||
|
||
是否隐藏所有页面右侧的手机模拟器,默认不隐藏
|
||
|
||
### site.simulator.url
|
||
|
||
- Type: `string`
|
||
- Default: -
|
||
|
||
自定义手机模拟器的 iframe URL 地址。
|
||
|
||
### site.htmlMeta
|
||
|
||
- Type: `Record<string, string>`
|
||
- Default: `undefined`
|
||
|
||
配置 HTML 中的 meta 标签,对象的 key 为 name,value 为 content。
|
||
|
||
### site.enableVConsole
|
||
|
||
- Type: `boolean`
|
||
- Default: `false`
|
||
|
||
是否在 dev 时开启 [vConsole](https://github.com/Tencent/vConsole) 调试,用于移动端 debug。
|
||
|
||
## Postcss
|
||
|
||
通过根目录下的`postcss.config.js`文件可以对 Postcss 进行配置。
|
||
|
||
### 默认配置
|
||
|
||
`vant-cli` 中默认的 Postcss 配置如下:
|
||
|
||
```js
|
||
module.exports = {
|
||
plugins: {
|
||
autoprefixer: {},
|
||
},
|
||
};
|
||
```
|
||
|
||
## browserslist
|
||
|
||
推荐在 `package.json` 文件里添加 browserslist 字段,这个值会被 `autoprefixer` 用来确定目标浏览器的版本,保证编译后代码的兼容性。
|
||
|
||
在移动端浏览器中使用,可以添加如下配置:
|
||
|
||
```json
|
||
{
|
||
"browserslist": ["Chrome >= 51", "iOS >= 10"]
|
||
}
|
||
```
|