-
Notifications
You must be signed in to change notification settings - Fork 29
/
.umirc.ts
137 lines (135 loc) · 3.66 KB
/
.umirc.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { defineConfig, IConfig } from 'dumi';
const isProd =
process.env.NODE_ENV === 'production' && process.env.PREVIEW_PR !== 'true';
export default defineConfig({
ssr: isProd ? {} : false,
exportStatic: isProd ? {} : false,
title: 'Tuya Design',
mode: 'site',
locales: [
['zh', '中文'],
['en', 'English'],
],
favicon:
'https://imagesd.tuyaus.com/tyims/rms-static/c118f100-7bd1-11ea-be8a-afe9921c3d8a-1586595140625.ico?tyName=tuya_favicon.ico',
extraBabelPlugins: [
[
'import',
{
libraryName: 'antd',
libraryDirectory: 'es',
style: 'css',
},
],
],
theme: {
'@primary-color': '#ff4800',
},
logo:
'https://imagesd.tuyaus.com/tyims/rms-static/c118f100-7bd1-11ea-be8a-afe9921c3d8a-1586595140625.ico?tyName=tuya_favicon.ico',
themeConfig: {
repository: {
url: 'https://github.com/tuya/tuya-panel-kit-docs',
branch: 'main',
platform: 'github',
},
qrcode:
'tuyaSmart--addVirtualDev?productId=mvhcrizelobov3dw&token=release_common_component',
apiData: 'https://unpkg.com/tuya-panel-kit-props-data/props.json',
demoUrl:
process.env.NODE_ENV === 'development'
? // ? 'http://localhost:8001'
'https://tuya.github.io/tuya-panel-kit/tuya-panel-kit/'
: 'https://tuya.github.io/tuya-panel-kit/tuya-panel-kit/',
demoInfoUrl:
'https://github.com/tuya/tuya-panel-kit/blob/master/example/tuya-panel-kit/src/pages{demo}/index.tsx',
typeAssetsUrl: 'https://panel-docs.tuyacn.com/types-assets.json',
},
navs: {
zh: [
null,
{
title: '智能小程序文档',
path: 'https://developer.tuya.com/cn/miniapp/',
},
{
title: '智能小程序物料广场',
path: 'https://developer.tuya.com/cn/material/',
},
{
title: 'Github',
path: 'https://github.com/tuya/tuya-panel-kit',
},
{
title: 'Contact Us',
path: 'https://service.console.tuya.com/8/3/create',
},
{
title: 'More',
path: 'https://developer.tuya.com/cn/docs/iot/preface?id=K9m1fn6ycetd0',
},
// {
// title: '版本',
// children: [
// {
// title: 'v1',
// },
// {
// title: 'v2',
// },
// ],
// },
],
en: [
null,
{
title: 'MiniApp Document',
path: 'https://developer.tuya.com/cn/miniapp/',
},
{
title: 'MiniApp Material',
path: 'https://developer.tuya.com/cn/material/',
},
{
title: 'Github',
path: 'https://github.com/tuya/tuya-panel-kit',
},
{
title: 'Contact Us',
path: 'https://service.console.tuya.com/8/3/create',
},
{
title: 'More',
path: 'https://developer.tuya.com/cn/docs/iot/preface?id=K9m1fn6ycetd0',
},
// {
// title: 'Version',
// children: [
// {
// title: 'v1',
// },
// {
// title: 'v2',
// },
// ],
// },
],
},
resolve: {
passivePreview: true,
},
hash: isProd,
// base: isProd ? '/tuya-panel-kit-docs' : '/', // router base
publicPath: isProd
? // ? '//cdn.jsdelivr.net/gh/tuya/tuya-panel-kit-docs@gh-pages/'
'/'
: '/',
headScripts: [
{
async: true,
src:
'//static1.tuyacn.com/static/ty-lib/tpm3/tpm-3.3.11.min.js?appId=panel-docs',
},
],
// more config: https://d.umijs.org/config
} as IConfig);