zebra/firebase.json

24 lines
343 B
JSON
Raw Normal View History

2020-01-16 12:46:18 -08:00
{
"hosting": {
"public": "target/doc",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/",
"destination": "/zebrad",
"type": 301
}
2020-01-16 12:46:18 -08:00
]
}
}