-
Notifications
You must be signed in to change notification settings - Fork 7
/
firebase.json
58 lines (58 loc) · 1.96 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
{
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"frameworksBackend": {
"region": "europe-west1"
},
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"flutter": {
"platforms": {
"android": {
"default": {
"projectId": "flutterui-b4f0b",
"appId": "1:393409877189:android:9102d187c894bf8e3eccac",
"fileOutput": "android/app/google-services.json"
}
},
"ios": {
"default": {
"projectId": "flutterui-b4f0b",
"appId": "1:393409877189:ios:8d4d9fc0a2d3238c3eccac",
"uploadDebugSymbols": false,
"fileOutput": "ios/Runner/GoogleService-Info.plist"
}
},
"macos": {
"default": {
"projectId": "flutterui-b4f0b",
"appId": "1:393409877189:ios:8d4d9fc0a2d3238c3eccac",
"uploadDebugSymbols": false,
"fileOutput": "macos/Runner/GoogleService-Info.plist"
}
},
"dart": {
"lib/firebase_options.dart": {
"projectId": "flutterui-b4f0b",
"configurations": {
"android": "1:393409877189:android:9102d187c894bf8e3eccac",
"ios": "1:393409877189:ios:8d4d9fc0a2d3238c3eccac",
"macos": "1:393409877189:ios:8d4d9fc0a2d3238c3eccac",
"web": "1:393409877189:web:857cba4c619f08343eccac",
"windows": "1:393409877189:web:db68fd372afe6c233eccac"
}
}
}
}
}
}