-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtaro.ts
More file actions
50 lines (48 loc) · 1.5 KB
/
taro.ts
File metadata and controls
50 lines (48 loc) · 1.5 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
import { DocItem } from "../types";
const taro: DocItem = {
"V4 zh-CN": {
icon: "../assets/logo/taro.png",
apiKey: "3f32982103f4e75dadd86900d26a9315",
appId: "BH4D9OD16A",
indexName: "taro-zone",
type: "algolia",
homepage: "https://docs.taro.zone/docs/4.x/",
searchParameters: {
facetFilters: ["language:zh-cn", ["docusaurus_tag:default", "docusaurus_tag:docs-default-4.x"]],
},
},
"V3 zh-CN": {
icon: "../assets/logo/taro.png",
apiKey: "3f32982103f4e75dadd86900d26a9315",
appId: "BH4D9OD16A",
indexName: "taro-zone",
type: "algolia",
homepage: "https://docs.taro.zone/docs/",
searchParameters: {
facetFilters: ["language:zh-cn", ["docusaurus_tag:default", "docusaurus_tag:docs-default-3.x"]],
},
},
"V2 zh-CN": {
icon: "../assets/logo/taro.png",
apiKey: "3f32982103f4e75dadd86900d26a9315",
appId: "BH4D9OD16A",
indexName: "taro-zone",
type: "algolia",
homepage: "https://docs.taro.zone/docs/2.x/",
searchParameters: {
facetFilters: ["language:zh-cn", ["docusaurus_tag:default", "docusaurus_tag:docs-default-2.x"]],
},
},
"V1 zh-CN": {
icon: "../assets/logo/taro.png",
apiKey: "3f32982103f4e75dadd86900d26a9315",
appId: "BH4D9OD16A",
indexName: "taro-zone",
type: "algolia",
homepage: "https://docs.taro.zone/docs/1.x/",
searchParameters: {
facetFilters: ["language:zh-cn", ["docusaurus_tag:default", "docusaurus_tag:docs-default-1.x"]],
},
},
};
export default taro;