forked from stochaztic/lttp-tracker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfirebase.json
72 lines (72 loc) · 1.51 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
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
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"rewrites": [
{
"source": "/horiz/**",
"destination": "/horiz-ootrr-tracker.html"
},
{
"source": "/tsgmain/**",
"destination": "/tsg-vertical.html"
},
{
"source": "/tsgmw/**",
"destination": "/tsg-mw.html"
},
{
"source": "/tsgsquare/**",
"destination": "/tsg-square.html"
},
{
"source": "/tsg3player/**",
"destination": "/tsg-3player.html"
},
{
"source": "/tsgmeds/**",
"destination": "/tsg-dungeon-rewards.html"
},
{
"source": "/tsgmeds2/**",
"destination": "/tsg-square-dungeon-rewards.html"
},
{
"source": "/bqtrack/**",
"destination": "/bqtracker.html"
},
{
"source": "/bqdisplay/**",
"destination": "/bqdisplay.html"
},
{
"source": "/tblitz/**",
"destination": "/triforce-blitz.html"
},
{
"source": "/ootmm/**",
"destination": "/ootmm.html"
},
{
"source": "/rsl/**",
"destination": "/ootrr-tracker.html"
},
{
"source": "/zsr-ootmm-items/**",
"destination": "/layouts/zsr/zsr-ootmm-items.html"
},
{
"source": "/**",
"destination": "/"
}
],
"ignore": [
"firebase.json",
".idea/*",
"**/.*",
"**/node_modules/**"
]
}
}