-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirebase.json
88 lines (88 loc) · 2.36 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
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/",
"destination": "/index.html"
},
{
"source": "/search.html",
"destination": "/posts/index.html"
},
{
"source": "/search",
"destination": "/posts/index.html"
},
{
"source": "/contact.html",
"destination": "/contact/index.html"
},
{
"source": "/demos.html",
"destination": "/demos/index.html"
},
{
"source": "/404.html",
"destination": "/404/index.html"
},
{
"source": "/posts/announcing-svm.html",
"destination": "/posts/announcing-sabervm/index.html"
},
{
"source": "/posts/beginners-guide-pl-academia.html",
"destination": "/posts/beginners-guide-pl-academia/index.html"
},
{
"source": "/posts/first-post.html",
"destination": "/posts/first-post/index.html"
},
{
"source": "/posts/getting-started-category-theory.html",
"destination": "/posts/getting-started-category-theory/index.html"
},
{
"source": "/posts/implicit-products-better-forall.html",
"destination": "/posts/implicit-products-better-forall/index.html"
},
{
"source": "/posts/logic-in-types.html",
"destination": "/posts/logic-in-types/index.html"
},
{
"source": "/posts/safe-mmm-with-coeffects.html",
"destination": "/posts/safe-mmm-with-coeffects/index.html"
},
{
"source": "/posts/security-crashing-modal-logic.html",
"destination": "/posts/security-crashing-modal-logic/index.html"
},
{
"source": "/posts/simple-programming-languages.html",
"destination": "/posts/simple-programming-languages/index.html"
},
{
"source": "/posts/type-of-sprintf.html",
"destination": "/posts/type-of-sprintf/index.html"
},
{
"source": "/posts/typechecking-sabervm.html",
"destination": "/posts/typechecking-sabervm/index.html"
},
{
"source": "/posts/cricket.html",
"destination": "/cricket/index.html"
},
{
"source": "**",
"destination": "/404/index.html"
}
]
}
}