-
Notifications
You must be signed in to change notification settings - Fork 55
/
firebase.json
37 lines (37 loc) · 964 Bytes
/
firebase.json
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
{
"hosting": [
{
"target": "archway-docs",
"public": ".output/public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"cleanUrls": true,
"redirects": [
{
"source": "/overview",
"destination": "/overview/about",
"type": 301
},
{
"source": "/resources",
"destination": "/resources/networks",
"type": 301
},
{
"source": "/validators/running-a-node",
"destination": "/validators/running-a-node/prerequisites",
"type": 301
},
{
"source": "/validators/requirements",
"destination": "/validators/becoming-a-validator/requirements",
"type": 301
},
{
"source": "/community/wallet-setup/keplr-setup",
"destination": "/community/wallet-setup/keplr/keplr-setup",
"type": 301
}
]
}
]
}