ci: fix firebase config to work with latest firebase-tools

This commit is contained in:
Hans Larsen 2018-07-27 11:12:09 -07:00 committed by Hans
parent 9c8058461d
commit aef2c99f17
2 changed files with 18 additions and 7 deletions

View File

@ -0,0 +1,5 @@
{
"projects": {
"default": "cli-angular-io"
}
}

View File

@ -1,9 +1,15 @@
{
"firebase": "cli-angular-io",
"public": "www",
"ignore": [
"firebase.json",
"**/.*"
]
"hosting": {
"public": "",
"ignore": [
"firebase.json",
"**/.*"
],
"rewrites": [
{
"source": "/**/!(*.@(js|ts|html|css|json|svg|png|jpg|jpeg))",
"destination": "/index.html"
}
]
}
}