-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvant.config.mjs
58 lines (58 loc) · 1.13 KB
/
vant.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// https://aresnine.github.io/technology/vantcli/
export default {
name: 'lj-component',
build: {
packageManager: 'pnpm',
css: {
preprocessor: 'sass',
},
site: {
publicPath: '/component/',
},
},
site: {
title: 'lj-component',
logo: 'https://fastly.jsdelivr.net/npm/@vant/assets/logo.png',
nav: [
{
title: '开发指南',
items: [
{
path: 'home',
title: '介绍',
},
{
path: 'quickstart',
title: '快速上手',
},
],
},
{
title: '基础组件',
items: [
{
path: 'demo-button',
title: 'DemoButton 按钮',
},
],
},
{
title: 'directives',
items: [
{
path: 'scroll',
title: 'pc鼠标拖拽scroll',
},
{
path: 'mutil-click',
title: 'mutilClick多点触发',
},
{
path: 'lazy',
title: '图片视口懒加载',
},
],
},
],
},
}