-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathvuepress.ts
More file actions
70 lines (68 loc) · 1.71 KB
/
vuepress.ts
File metadata and controls
70 lines (68 loc) · 1.71 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
import { DocItem } from "../types";
const vuepress: DocItem = {
"V2 en-US": {
icon: "../assets/logo/vuepress.png",
apiKey: "9a9058b8655746634e01071411c366b8",
appId: "34YFD9IUQ2",
indexName: "vuepress",
searchParameters: {
attributesToRetrieve: [
"hierarchy.lvl0",
"hierarchy.lvl1",
"hierarchy.lvl2",
"hierarchy.lvl3",
"hierarchy.lvl4",
"hierarchy.lvl5",
"hierarchy.lvl6",
"content",
"type",
"url",
],
},
type: "algolia",
homepage: "https://v2.vuepress.vuejs.org/",
},
"V2 zh-CN": {
icon: "../assets/logo/vuepress.png",
apiKey: "9a9058b8655746634e01071411c366b8",
appId: "34YFD9IUQ2",
indexName: "vuepress",
searchParameters: {
attributesToRetrieve: [
"hierarchy.lvl0",
"hierarchy.lvl1",
"hierarchy.lvl2",
"hierarchy.lvl3",
"hierarchy.lvl4",
"hierarchy.lvl5",
"hierarchy.lvl6",
"content",
"type",
"url",
],
facetFilters: ["lang:zh-CN", "tags:v2"],
},
type: "algolia",
homepage: "https://v2.vuepress.vuejs.org/zh/",
},
"V1 en-US": {
icon: "../assets/logo/vuepress.png",
apiKey: "3a539aab83105f01761a137c61004d85",
appId: "BH4D9OD16A",
indexName: "vuepress",
type: "algolia",
homepage: "https://vuepress.vuejs.org/",
},
"V1 zh-CN": {
icon: "../assets/logo/vuepress.png",
apiKey: "3a539aab83105f01761a137c61004d85",
appId: "BH4D9OD16A",
indexName: "vuepress",
type: "algolia",
homepage: "https://vuepress.vuejs.org/zh/",
searchParameters: {
facetFilters: ["lang:zh-CN", "tags:v1"],
},
},
};
export default vuepress;