-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlinks.ts
More file actions
76 lines (73 loc) · 1.7 KB
/
links.ts
File metadata and controls
76 lines (73 loc) · 1.7 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 { SidebarConfig } from "vuepress";
import { NavbarConfig } from "@vuepress/theme-default/lib/shared/nav";
const sidebar: SidebarConfig = [
{
text: 'Prologue',
collapsible: true,
children: [
'/prologue/contributing',
'/prologue/project-policies'
]
},
{
text: 'Getting Started',
collapsible: true,
children: [
'/getting-started/',
'/getting-started/installation'
]
},
{
text: 'Calliope',
collapsible: true,
children: [
'/calliope/',
'/calliope/attributes',
'/calliope/api-calls',
'/calliope/query-building',
'/calliope/relationships',
'/calliope/timestamps',
'/calliope/model-collection',
'/calliope/ancestry-collection'
]
},
{
text: 'Services',
collapsible: true,
children: [
'/services/',
'/services/api',
'/services/api-response-handler'
]
},
{
text: 'Helpers',
collapsible: true,
children: [
'/helpers/',
'/helpers/collection',
'/helpers/pagination',
'/helpers/global-config',
'/helpers/event-emitter'
]
},
{
text: 'Testing',
collapsible: true,
children: [
'/testing/',
'/testing/factories'
]
},
{
text: 'Cookbook',
link: '/cookbook'
},
]
const navbar: NavbarConfig = [
{ text: 'API', link: 'https://api.upfrontjs.com/framework', target:'_blank' }
]
export default {
sidebar,
navbar
}