-
Notifications
You must be signed in to change notification settings - Fork 557
/
firebase.json
37 lines (37 loc) · 855 Bytes
/
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
{
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"flutter": {
"platforms": {
"android": {
"default": {
"projectId": "flutter-catalog",
"appId": "1:785184947614:android:5457502553a9ce1b",
"fileOutput": "android/app/google-services.json"
}
},
"dart": {
"lib/firebase_options.dart": {
"projectId": "flutter-catalog",
"configurations": {
"android": "1:785184947614:android:5457502553a9ce1b",
"ios": "1:785184947614:ios:e7733ee4559d7b91f3aa8f",
"web": "1:785184947614:web:4d5471b36872c2dbf3aa8f"
}
}
}
}
}
}