-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase.json
More file actions
57 lines (57 loc) · 984 Bytes
/
firebase.json
File metadata and controls
57 lines (57 loc) · 984 Bytes
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
{
"functions": {
"predeploy": [
"yarn lint",
"yarn build"
],
"source": "functions"
},
"firestore": {
"rules": "./firestore/firestore.rules",
"indexes": "./firestore/firestore.indexes.json"
},
"storage": {
"rules": "./storage/storage.rules"
},
"emulators": {
"firestore": {
"port": 8080
},
"ui": {
"enabled": true,
"host": "localhost",
"port": 4000
},
"functions": {
"port": 5003
},
"database": {
"port": 9000
},
"pubsub": {
"port": 8085
}
},
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"appAssociation": "AUTO",
"rewrites": [
{
"source": "/**",
"dynamicLinks": true
}
],
"redirects": [
{
"regex": "^/[^\\.well\\-known].*$",
"destination": "https://common.io/",
"type": 302
}
]
}
}