-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfirebase.json
43 lines (43 loc) · 1.28 KB
/
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
38
39
40
41
42
43
{
"hosting": {
"public": "build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"redirects": [
{
"source": "/docs/error-handling",
"destination": "/docs/v1/error-handling",
"type": 301
},
{
"source": "/docs/category/endpoints",
"destination": "/docs/category/api-v1",
"type": 301
},
{
"source": "/docs/endpoints/api",
"destination": "/docs/v1/api",
"type": 301
},
{
"source": "/docs/endpoints/api-v1-data",
"destination": "/docs/v1/state",
"type": 301
},
{
"source": "/docs/endpoints/api-v1-telegram",
"destination": "/docs/v1/telegram",
"type": 301
},
{
"source": "/docs/endpoints/api-v1-identify",
"destination": "/docs/v1/identify",
"type": 301
},
{
"source": "/docs/endpoints/api-v1-system",
"destination": "/docs/v1/system",
"type": 301
}
]
}
}