-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter.options.ts
107 lines (106 loc) · 3.19 KB
/
router.options.ts
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import { resolve } from "path";
export const customRoutes = [
{
name: "scientific-community",
path: "/scientific/:community",
file: resolve(__dirname, "pages/benchmarking/community"),
},
{
name: "benchmarking-community",
path: "/benchmarking/:community",
file: resolve(__dirname, "pages/benchmarking/community"),
},
{
name: "benchmarking-community-event",
path: "/benchmarking/:community/events",
file: resolve(__dirname, "pages/benchmarking/community/events"),
},
{
name: "scientific-community-challenge",
path: "/benchmarking/:community/:challenge",
file: resolve(__dirname, "pages/benchmarking/community/challenge"),
},
{
name: "scientific-community-challenge-participants",
path: "/benchmarking/:community/:id/participants",
file: resolve(
__dirname,
"pages/benchmarking/community/challenge/participants",
),
},
{
name: "dashboard-community-edit",
path: "/dashboard/projects_communities/:id/edit",
file: resolve(__dirname, "pages/dashboard/projects_communities/[id].vue"),
},
{
name: "dashboard-community-add",
path: "/dashboard/projects_communities/add",
file: resolve(__dirname, "pages/dashboard/projects_communities/add.vue"),
},
{
name: "dashboard-community-events",
path: "/dashboard/projects_communities/:community_id/events/:id",
file: resolve(
__dirname,
"pages/dashboard/projects_communities/events/[id].vue",
),
},
{
name: "dashboard-community-event-add",
path: "/dashboard/projects_communities/:community_id/events/add",
file: resolve(
__dirname,
"pages/dashboard/projects_communities/events/add.vue",
),
},
{
name: "dashboard-community-event-community-add",
path: "/dashboard/projects_communities/:community_id/events/:event_id/add",
file: resolve(
__dirname,
"pages/dashboard/projects_communities/events/challenges/add.vue",
),
},
{
name: "dashboard-community-event-community",
path: "/dashboard/projects_communities/:community_id/events/:event_id/challenges/:id",
file: resolve(
__dirname,
"pages/dashboard/projects_communities/events/challenges/[id].vue",
),
},
{
name: "dashboard-community-event-community-metric",
path: "/dashboard/projects_communities/:community_id/events/:event_id/challenges/:id/metrics/add",
file: resolve(
__dirname,
"pages/dashboard/projects_communities/events/challenges/metrics/add.vue",
),
},
{
name: "dashboard-contacts",
path: "/dashboard/contacts",
file: resolve(__dirname, "pages/dashboard/contacts"),
},
{
name: "dashboard-contacts-add",
path: "/dashboard/contacts/add",
file: resolve(__dirname, "pages/dashboard/contacts/add.vue"),
},
{
name: "dashboard-metrics",
path: "/dashboard/metrics",
file: resolve(__dirname, "pages/dashboard/metrics/index.vue"),
},
{
name: "dashboard-metrics-id",
path: "/dashboard/metrics/:id",
file: resolve(__dirname, "pages/dashboard/metrics/[id].vue"),
},
{
name: "dashboard-metrics-playground",
path: "/dashboard/metrics-playground",
file: resolve(__dirname, "pages/dashboard/metrics_playground/index.vue"),
},
];