hoppscotch/firebase.json

20 lines
437 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": [
"mv .env.example .env && npm install -g pnpm && pnpm i && pnpm run generate"
2021-09-10 07:16:50 +00:00
],
"public": "packages/hoppscotch-web/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
}
}