website/firebase.json

20 lines
318 B
JSON
Raw Normal View History

2018-06-25 00:51:55 -04:00
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2018-07-17 21:03:33 -04:00
},
"functions": {
"predeploy": "npm --prefix \"$RESOURCE_DIR\" run build"
2018-06-25 00:51:55 -04:00
}
}