ENH: Add firebase deploy config (#5)

Fixes #2
This commit is contained in:
Matthew Ryan Dillon 2017-04-07 13:21:37 +00:00 committed by GitHub
parent 4a01acb556
commit d58b4e218c
2 changed files with 13 additions and 0 deletions

2
.gitignore vendored
View file

@ -15,3 +15,5 @@
/libpeerconnection.log
npm-debug.log*
testem.log
.firebaserc

11
firebase.json Normal file
View file

@ -0,0 +1,11 @@
{
"hosting": {
"public": "dist",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}