This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
firebase.json
72 lines (72 loc) · 1.74 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
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/form",
"destination": "https://forms.gle/XQLMEajkGtnvh5iD8",
"type": 302
},
{
"source": "/admin",
"destination": "https://app.poap.xyz/admin",
"type": 302
},
{
"source": "/tombola",
"destination": "https://poap.xyz/#tombola",
"type": 302
},
{
"source": "/join",
"destination": "https://testflight.apple.com/join/oZiOSCuK",
"type": 302
},
{
"source": "/onepager",
"destination": "https://res.cloudinary.com/dbiqkiypz/image/upload/v1565913513/poap_onepager_june19_vz54rg",
"type": 302
},
{
"source": "/video-pitch",
"destination": "https://www.youtube.com/watch?v=VZlmQjhz3ko&feature=youtu.be",
"type": 302
},
{
"source": "/ios",
"destination": "https://apps.apple.com/us/app/poap-wallet/id1473716619?ls=1",
"type": 302
},
{
"source": "/android",
"destination": "https://play.google.com/store/apps/details?id=xyz.explorer.poap",
"type": 302
},
{
"source": "/telegram",
"destination": "https://t.me/poapxyz",
"type": 302
},
{
"source": "/discord",
"destination": "https://discord.gg/fcxW4yR",
"type": 302
},
{
"source": "/claim/:id*",
"destination": "https://app.poap.xyz/claim/:id",
"type": 301
},
{
"source": "/claim",
"destination": "https://app.poap.xyz/claim",
"type": 301
}
]
}
}