-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathoptimize.ts
34 lines (32 loc) · 869 Bytes
/
optimize.ts
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
const include = [
'axios',
'echarts',
'lodash-es',
'resize-detector',
'vant/es',
'vant/es/cell-group/style/index',
'vant/es/popup/style/index',
'vant/es/picker/style/index',
'vant/es/cell/style/index',
'vant/es/switch/style/index',
'vant/es/space/style/index',
'vant/es/button/style/index',
'vant/es/empty/style/index',
'vant/es/icon/style/index',
'vant/es/stepper/style/index',
'vant/es/image/style/index',
'vant/es/form/style/index',
'vant/es/field/style/index',
'vant/es/notify/style/index',
'vant/es/config-provider/style/index',
'vant/es/nav-bar/style/index',
'vant/es/tabbar/style/index',
'vant/es/tabbar-item/style/index',
'unplugin-vue-router/runtime',
'unplugin-vue-router/data-loaders',
'unplugin-vue-router/data-loaders/basic',
]
const exclude = [
'@iconify-json/carbon',
]
export { include, exclude }