api-client/firebase.json

18 lines
377 B
JSON
Raw Normal View History

2019-10-03 09:46:39 +00:00
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
2021-06-27 06:36:57 +00:00
},
"hosting": {
"predeploy": ["mv .env.example .env && npm ci && npm run generate"],
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2019-10-03 09:46:39 +00:00
}
}