mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 23:28:35 +00:00
18 lines
377 B
JSON
18 lines
377 B
JSON
{
|
|
"firestore": {
|
|
"rules": "firestore.rules",
|
|
"indexes": "firestore.indexes.json"
|
|
},
|
|
"hosting": {
|
|
"predeploy": ["mv .env.example .env && npm ci && npm run generate"],
|
|
"public": "dist",
|
|
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|
|
}
|