yew/firebase.json
Muhammad Hamza ec1ebe6756
Fix broken home link (#1918)
* Serve docs at `/` instead of `/docs`, no `/intro`

* fix links

* update workflow
2021-06-13 20:25:48 +02:00

25 lines
439 B
JSON

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