BraycedForUnbased/firebase.json

24 lines
378 B
JSON
Raw Permalink Normal View History

2024-01-01 12:47:23 +00:00
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2024-01-02 04:37:22 +00:00
},
"storage": {
"rules": "storage.rules"
2024-01-01 12:47:23 +00:00
}
}