-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtauri.ts
More file actions
76 lines (74 loc) · 2.27 KB
/
Copy pathtauri.ts
File metadata and controls
76 lines (74 loc) · 2.27 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
import { DocItem } from "../types";
const tauri: DocItem = {
"en-US": {
icon: "../assets/logo/tauri.png",
apiKey: "3eb6db150af1abefe000f00386e149dfb5a006932cab55d1ccd810b8672a4e12",
indexName: "docs-v1",
type: "meilisearch",
apiHost: "https://ms-4ebb96f179f0-1619.fra.meilisearch.io/",
homepage: "https://tauri.app/",
searchParameters: {
attributesToHighlight: ["*"],
attributesToCrop: ["content"],
cropLength: 30,
filter: ["lang = en"],
},
},
"zh-CN": {
icon: "../assets/logo/tauri.png",
apiKey: "3eb6db150af1abefe000f00386e149dfb5a006932cab55d1ccd810b8672a4e12",
indexName: "docs-v1",
type: "meilisearch",
apiHost: "https://ms-4ebb96f179f0-1619.fra.meilisearch.io/",
homepage: "https://tauri.app/zh-cn/",
searchParameters: {
attributesToHighlight: ["*"],
attributesToCrop: ["content"],
cropLength: 30,
filter: ["lang = zh-cn"],
},
},
"fr-FR": {
icon: "../assets/logo/tauri.png",
apiKey: "3eb6db150af1abefe000f00386e149dfb5a006932cab55d1ccd810b8672a4e12",
indexName: "docs-v1",
type: "meilisearch",
apiHost: "https://ms-4ebb96f179f0-1619.fra.meilisearch.io/",
homepage: "https://tauri.app/fr/",
searchParameters: {
attributesToHighlight: ["*"],
attributesToCrop: ["content"],
cropLength: 30,
filter: ["lang = fr"],
},
},
"ko-KR": {
icon: "../assets/logo/tauri.png",
apiKey: "3eb6db150af1abefe000f00386e149dfb5a006932cab55d1ccd810b8672a4e12",
indexName: "docs-v1",
type: "meilisearch",
apiHost: "https://ms-4ebb96f179f0-1619.fra.meilisearch.io/",
homepage: "https://tauri.app/ko/",
searchParameters: {
attributesToHighlight: ["*"],
attributesToCrop: ["content"],
cropLength: 30,
filter: ["lang = ko"],
},
},
"it-IT": {
icon: "../assets/logo/tauri.png",
apiKey: "3eb6db150af1abefe000f00386e149dfb5a006932cab55d1ccd810b8672a4e12",
indexName: "docs-v1",
type: "meilisearch",
apiHost: "https://ms-4ebb96f179f0-1619.fra.meilisearch.io/",
homepage: "https://tauri.app/it/",
searchParameters: {
attributesToHighlight: ["*"],
attributesToCrop: ["content"],
cropLength: 30,
filter: ["lang = it"],
},
},
};
export default tauri;