Files
whsfund/firebase.json

23 lines
401 B
JSON

{
"hosting": {
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "/thank-you",
"destination": "/thank-you.html"
},
{
"source": "**",
"destination": "/index.html"
}
]
},
"firestore": {
"rules": "firestore.rules"
},
"functions": {
"source": "functions"
}
}