-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
113 lines (111 loc) · 2.96 KB
/
config.ts
File metadata and controls
113 lines (111 loc) · 2.96 KB
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
import { createRequire } from "module";
import { defineAdditionalConfig, type DefaultTheme } from "vitepress";
const require = createRequire(import.meta.url);
const pkg = require("vitepress/package.json");
export default defineAdditionalConfig({
description: "AlwaysTeam description",
themeConfig: {
nav: [
{ text: "首页", link: "/" },
{ text: "指南", link: "/guide/" },
{ text: "关于", link: "/about" },
],
sidebar: {
"/guide/": [
{
text: "指南",
items: [{ text: "关于", link: "/guide/" }],
},
{
text: "模版",
items: [
{ text: "Vue", link: "/guide/template/vue" },
{ text: "VitePress", link: "/guide/template/vitepress" },
{ text: "hexo", link: "/guide/template/hexo" },
],
},
{
text: "地图",
items: [
{
text: "高德地图",
items: [
{
text: "地图选点",
link: "/guide/map/amap/point",
},
{
text: "车辆轨迹",
link: "/guide/map/amap/car_track",
},
],
},
{
text: "腾讯地图",
items: [
{
text: "地图选点",
link: "/guide/map/tencent/point",
},
{
text: "车辆轨迹",
link: "/guide/map/tencent/car_track",
},
{
text: "路径规划",
link: "/guide/map/tencent/planning",
},
],
},
{
text: "百度地图",
items: [
{
text: "地图选点",
link: "/guide/map/baidu/point",
},
],
},
{
text: "天地图",
items: [
{
text: "地图选点",
link: "/guide/map/tianditu/point",
},
{
text: "车辆轨迹",
link: "/guide/map/tianditu/car_track",
},
],
},
{
text: "滴滴地图",
items: [
{
text: "地图选点",
link: "/guide/map/didi/point",
},
],
},
],
},
],
},
editLink: {
pattern:
"https://github.com/AlwaysTeam/AlwaysTeam.github.io/blob/master/:path",
text: "在 GitHub 上编辑此页面",
},
footer: {
message: "基于 MIT 许可发布",
copyright: "版权所有 © 2025-至今 AlwaysTeam",
},
lastUpdated: {
text: "最后更新于",
},
outline: {
label: "页面导航",
},
},
});