-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathnuxt.ts
More file actions
28 lines (26 loc) · 683 Bytes
/
nuxt.ts
File metadata and controls
28 lines (26 loc) · 683 Bytes
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
import { DocItem } from "../types";
const nuxt: DocItem = {
"V3 en-US": {
icon: "../assets/logo/nuxt.png",
apiKey: "60a01900a4b726d667eab75b6f337592",
appId: "1V8G7N9GF0",
indexName: "nuxtjs",
type: "algolia",
homepage: "https://v3.nuxtjs.org/",
searchParameters: {
facetFilters: ["language:en-US", "tags:v3"],
},
},
"V2 en-US": {
icon: "../assets/logo/nuxt.png",
apiKey: "60a01900a4b726d667eab75b6f337592",
appId: "1V8G7N9GF0",
indexName: "nuxtjs",
type: "algolia",
homepage: "https://nuxtjs.org/",
searchParameters: {
facetFilters: ["language:en-US", "tags:main"],
},
},
};
export default nuxt;