api-client/firebase.json

20 lines
479 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": [
2021-11-02 01:31:48 +00:00
"cd packages/hoppscotch-app && mv .env.example .env && cd ../.. && npm install -g pnpm && pnpm i && pnpm run generate"
2021-09-10 07:16:50 +00:00
],
2021-09-10 07:35:31 +00:00
"public": "packages/hoppscotch-app/dist",
2021-06-27 06:36:57 +00:00
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2019-10-03 09:46:39 +00:00
}
}