-
Notifications
You must be signed in to change notification settings - Fork 2
/
.umirc.ts
65 lines (64 loc) · 1.47 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
import { defineConfig } from 'dumi';
export default defineConfig({
base: '/flutter-getx-doc',
exportStatic: {},
publicPath: '/flutter-getx-doc/',
title: 'Flutter Getx Doc',
mode: 'site',
locales: [['zh-CN', '中文']],
navs: [
{
title: '国内镜像',
path: 'http://flutter.hfybbs.vip',
},
{
title: '快速开始',
path: '/quick-start',
},
{
title: '进阶使用',
path: '/advanced-used',
},
{
title: '工程化',
path: '/engineer',
},
{
title: 'Getx Server',
path: 'https://github.com/jonataslaw/get_server',
},
{
title: 'GetX Cli',
children: [
{ title: 'getx_cli', path: 'https://github.com/jonataslaw/get_cli' },
{
title: 'cn_get_cli',
path: 'https://github.com/1467602180/cn_get_cli',
},
],
},
{
title: '性能测试',
path: 'https://github.com/jonataslaw/benchmarks',
},
{
title: 'API文档',
path: 'https://pub.flutter-io.cn/documentation/get/latest/index.html',
},
{
title: 'Github',
children: [
{ title: 'GetX Github', path: 'https://github.com/jonataslaw/getx' },
{
title: 'Flutter GetX Doc Github',
path: 'https://github.com/1467602180/flutter-getx-doc',
},
],
},
],
logo: '/flutter-getx-doc/logo.png',
analytics: {
ga: 'G-WFS7T3W8F2',
baidu: 'ee1914f1a1e0f365b031346e82781489',
},
});