-
Notifications
You must be signed in to change notification settings - Fork 1
/
firebase.json
142 lines (142 loc) · 3.1 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"hosting": {
"public": "_site",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/about.md",
"destination": "/about.html",
"type": 301
},
{
"source": "/docs/MultiMaster.md",
"destination": "/multimaster.html",
"type": 301
},
{
"source": "/docs/Notedb.md",
"destination": "/notedb.html",
"type": 301
},
{
"source": "/docs/OutstandingTopics.md",
"destination": "/outstandingtopics.html",
"type": 301
},
{
"source": "/docs/ReviewKungFu.md",
"destination": "/reviewkungfu.html",
"type": 301
},
{
"source": "/docs/RoadMap.md",
"destination": "/roadmap.html",
"type": 301
},
{
"source": "/docs/Scaling.md",
"destination": "/scaling.html",
"type": 301
},
{
"source": "/docs/ShowCases.md",
"destination": "/showcases.html",
"type": 301
},
{
"source": "/docs/SqlMergeUserAccounts.md",
"destination": "/sqlmergeuseraccounts.html",
"type": 301
},
{
"source": "/index.md",
"destination": "/index.html",
"type": 301
},
{
"source": "/issues.md",
"destination": "/issues.html",
"type": 301
},
{
"source": "/releases/2.9.md",
"destination": "/2.9.html",
"type": 301
},
{
"source": "/releases/2.10.md",
"destination": "/2.10.html",
"type": 301
},
{
"source": "/releases/2.11.md",
"destination": "/2.11.html",
"type": 301
},
{
"source": "/releases/2.12.md",
"destination": "/2.12.html",
"type": 301
},
{
"source": "/releases/2.13.md",
"destination": "/2.13.html",
"type": 301
},
{
"source": "/releases/2.14.md",
"destination": "/2.14.html",
"type": 301
},
{
"source": "/releases/2.15.md",
"destination": "/2.15.html",
"type": 301
},
{
"source": "/releases/2.16.md",
"destination": "/2.16.html",
"type": 301
},
{
"source": "/releases/3.0.md",
"destination": "/3.0.html",
"type": 301
},
{
"source": "/releases/3.1.md",
"destination": "/3.1.html",
"type": 301
},
{
"source": "/releases/3.2.md",
"destination": "/3.2.html",
"type": 301
},
{
"source": "/releases/3.3.md",
"destination": "/3.3.html",
"type": 301
},
{
"source": "/releases/3.4.md",
"destination": "/3.4.html",
"type": 301
},
{
"source": "/releases/public-keys.md",
"destination": "/public-keys.html",
"type": 301
},
{
"source": "/releases/README.md",
"destination": "/releases-readme.html",
"type": 301
}
]
}
}