-
Notifications
You must be signed in to change notification settings - Fork 32
/
firebase.json
122 lines (122 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "build",
"rewrites": [
{
"source": "/Colorado",
"destination": "/index.html"
},
{
"source": "/colorado",
"destination": "/index.html"
},
{
"source": "/Arizona",
"destination": "/index.html"
},
{
"source": "/arizona",
"destination": "/index.html"
},
{
"source": "/South-Carolina",
"destination": "/index.html"
},
{
"source": "/south-carolina",
"destination": "/index.html"
},
{
"source": "/North-Carolina",
"destination": "/index.html"
},
{
"source": "/north-carolina",
"destination": "/index.html"
},
{
"source": "/Virginia",
"destination": "/index.html"
},
{
"source": "/virginia",
"destination": "/index.html"
},
{
"source": "/Oregon",
"destination": "/index.html"
},
{
"source": "/oregon",
"destination": "/index.html"
},
{
"source": "/nevada",
"destination": "/index.html"
},
{
"source": "/Nevada",
"destination": "/index.html"
},
{
"source": "/michigan",
"destination": "/index.html"
},
{
"source": "/Michigan",
"destination": "/index.html"
},
{
"source": "/maine",
"destination": "/index.html"
},
{
"source": "/Maine",
"destination": "/index.html"
},
{
"source": "/maryland",
"destination": "/index.html"
},
{
"source": "/Maryland",
"destination": "/index.html"
},
{
"source": "/pennsylvania",
"destination": "/index.html"
},
{
"source": "/Pennsylvania",
"destination": "/index.html"
},
{
"source": "/florida",
"destination": "/index.html"
},
{
"source": "/Florida",
"destination": "/index.html"
}
],
"ignore": [
"firebase.json",
"database.rules.json",
"package.json",
"Gruntfile.js",
"README.md",
"server.js",
"data.js",
"styles/bootstrap.css",
"styles/bootstrap.map",
".DS_Store",
"**/node_modules/**",
"functions/node_modules/**",
"**/bower_components/**",
"/scripts/.eslint.rc"
]
}
}