yew/firebase.json

32 lines
604 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"
}
],
"redirects": [
{
"source": "/",
"destination": "https://yew.rs/getting-started/examples",
"type": 302
}
]
}
]
}