yew/firebase.json
Muhammad Hamza f024874026
Fix broken link/redirects (#1881)
* Fix broken link/redirects

* Remove index page, update `commentURLPath`
2021-05-27 17:11:49 +02:00

36 lines
677 B
JSON

{
"hosting": [
{
"target": "website",
"public": "website/build/",
"cleanUrls": true,
"redirects": [
{
"source": "/",
"destination": "/docs/intro/",
"type": 302
},
{
"source": "/docs/next",
"destination": "/docs/next/intro/",
"type": 302
}
]
},
{
"target": "examples",
"public": "dist",
"rewrites": [
{
"source": "/router/**",
"destination": "/router/index.html"
},
{
"source": "/todomvc/**",
"destination": "/todomvc/index.html"
}
]
}
]
}