api-client/firebase.json

24 lines
459 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": {
2021-09-10 07:16:50 +00:00
"predeploy": [
"cd packages/hoppscotch-app",
"mv .env.example .env",
"npm i pnpm",
"pnpm ci",
"pnpm run generate"
],
2021-06-27 06:36:57 +00:00
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2019-10-03 09:46:39 +00:00
}
}