Skip to content

Commit 8e16992

Browse files
jelbournkara
authored andcommitted
chore: fix firebase dev instance (#1606)
1 parent 95b2a34 commit 8e16992

File tree

1 file changed

+28
-21
lines changed

1 file changed

+28
-21
lines changed

firebase.json

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
{
2-
"firebase": "material2-test",
3-
"public": "dist",
4-
"ignore": [
5-
"firebase.json",
6-
"**/.*",
7-
"**/node_modules/**",
8-
"tmp",
9-
"deploy",
10-
"typings"
11-
],
12-
"headers": [{
13-
"source": "*",
14-
"headers": [{
15-
"key": "Cache-Control",
16-
"value": "no-cache"
17-
}]
18-
}],
19-
"rewrites": [{
20-
"source": "/**/!(*.@(js|ts|html|css|json|svg|png|jpg|jpeg))",
21-
"destination": "/index.html"
22-
}]
2+
"hosting": {
3+
"public": "dist",
4+
"rewrites": [
5+
{
6+
"source": "/**/!(*.@(js|ts|html|css|json|svg|png|jpg|jpeg))",
7+
"destination": "/index.html"
8+
}
9+
],
10+
"headers": [
11+
{
12+
"source": "*",
13+
"headers": [
14+
{
15+
"key": "Cache-Control",
16+
"value": "no-cache"
17+
}
18+
]
19+
}
20+
],
21+
"ignore": [
22+
"firebase.json",
23+
"**/.*",
24+
"**/node_modules/**",
25+
"tmp",
26+
"deploy",
27+
"typings"
28+
]
29+
}
2330
}

0 commit comments

Comments
 (0)