-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathfirebase.json
More file actions
84 lines (84 loc) · 1.87 KB
/
firebase.json
File metadata and controls
84 lines (84 loc) · 1.87 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
{
"firestore": {
"rules": "firestore/firestore.rules",
"indexes": "firestore/firestore.indexes.json"
},
"hosting": {
"public": "web/dist/web",
"i18n": {
"root": "web/dist/web"
},
"redirects": [
{
"source": "/android/**",
"destination": "/en/android/:splat",
"type": 301
}
],
"rewrites": [
{
"source": "/.well-known/assetlinks.json",
"destination": "/en/assets/.well-known/assetlinks.json"
},
{
"source": "/importGeoJson",
"function": "importGeoJson"
},
{
"source": "/exportCsv",
"function": "exportCsv"
},
{
"source": "/exportGeojson",
"function": "exportGeojson"
},
{
"source": "/sessionLogin",
"function": "sessionLogin"
},
{
"source": "/en{,/**}",
"destination": "/en/index.html"
},
{
"source": "/es{,/**}",
"destination": "/es/index.html"
},
{
"source": "/fr{,/**}",
"destination": "/fr/index.html"
},
{
"source": "/lo{,/**}",
"destination": "/lo/index.html"
},
{
"source": "/pt{,/**}",
"destination": "/pt/index.html"
},
{
"source": "/th{,/**}",
"destination": "/th/index.html"
},
{
"source": "/vi{,/**}",
"destination": "/vi/index.html"
},
{
"source": "/**",
"destination": "/en/index.html"
}
]
},
"functions": {
"source": "./functions/isolate",
"ignore": [".git", "firebase-debug.log", "firebase-debug.*.log"],
"predeploy": [
"npx isolate-package",
"pnpm install --prefix ./functions/isolate --prod --no-frozen-lockfile --shamefully-hoist --ignore-workspace"
]
},
"storage": {
"rules": "storage/storage.rules"
}
}