zebra/firebase.json

24 lines
343 B
JSON

{
"hosting": {
"public": "target/doc",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/",
"destination": "/zebrad",
"type": 301
}
]
}
}