mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-21 14:38:47 +00:00
20 lines
437 B
JSON
20 lines
437 B
JSON
{
|
|
"firestore": {
|
|
"rules": "firestore.rules",
|
|
"indexes": "firestore.indexes.json"
|
|
},
|
|
"hosting": {
|
|
"predeploy": [
|
|
"mv .env.example .env && npm install -g pnpm && pnpm i && pnpm run generate"
|
|
],
|
|
"public": "packages/hoppscotch-web/dist",
|
|
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|
|
}
|