BraycedForUnbased/firebase.json

21 lines
329 B
JSON
Raw 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"
}
]
}
}