-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfirebase.json
More file actions
108 lines (108 loc) · 2.5 KB
/
firebase.json
File metadata and controls
108 lines (108 loc) · 2.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
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
108
{
"hosting": {
"public": "out",
"cleanUrls": true,
"redirects": [
{
"source": "/main/index.html",
"destination": "/",
"type": 302
},
{
"regex": "/main/pd(?P<page>.*)",
"destination": "/network/node/pd:page",
"type": 302
},
{
"regex": "/main/pclientd(?P<page>.*)",
"destination": "/network/node/pclientd:page",
"type": 302
},
{
"regex": "/main/(?P<page>.*)",
"destination": "/:page",
"type": 302
},
{
"source": "/node/pd/join-testnet.html",
"destination": "/network/node/pd/join-network.html",
"type": 302
},
{
"source": "/node/pd/indexing-events",
"destination": "/network/event-indexing",
"type": 302
},
{
"source": "/node/pd/indexing-events.md#running-an-archive-node",
"destination": "/network/relayers#running-an-archive-node",
"type": 302
},
{
"regex": "/event-indexing(?P<page>.*)",
"destination": "/network/event-indexing:page",
"type": 302
},
{
"regex": "/frontend(?P<page>.*)",
"destination": "/network/frontend:page",
"type": 302
},
{
"regex": "/node(?P<page>.*)",
"destination": "/network/node:page",
"type": 302
},
{
"source": "/relayers",
"destination": "/network/relayers",
"type": 302
},
{
"source": "/dex",
"destination": "/overview/dex",
"type": 302
},
{
"regex": "/dex(?P<page>.*)",
"destination": "/overview/dex:page",
"type": 302
},
{
"source": "/disclosure",
"destination": "/overview/disclosure",
"type": 302
},
{
"source": "/gov",
"destination": "/overview/gov",
"type": 302
},
{
"source": "/interchain-privacy",
"destination": "/overview/interchain-privacy",
"type": 302
},
{
"source": "/privacy",
"destination": "/overview/privacy",
"type": 302
},
{
"source": "/staking",
"destination": "/overview/staking",
"type": 302
},
{
"regex": "/pcli(?P<page>.*)",
"destination": "/usage/pcli:page",
"type": 302
},
{
"regex": "/web(?P<page>.*)",
"destination": "/usage/web:page",
"type": 302
}
]
}
}