yew/firebase.json
2020-08-18 10:46:46 +08:00

47 lines
1007 B
JSON

{
"hosting": {
"site": "yew-rs",
"public": "website/build/yew",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [ {
"source": "/",
"destination": "/docs/en/intro/",
"type": 301
}, {
"source": "/docs",
"destination": "/docs/en/intro/",
"type": 301
}, {
"regex": "/(docs/)?(?P<lang>en|ja|zh-TW|zh-CN)",
"destination": "/docs/:lang/intro/",
"type": 301
}, {
"source": "/docs/v/zh_cn",
"destination": "/docs/zh-CN/intro/",
"type": 301
}, {
"source": "/docs/v/zh_tw",
"destination": "/docs/zh-TW/intro/",
"type": 301
}, {
"regex": "/docs/v/zh_cn/(.*)",
"destination": "/docs/zh-CN/:1",
"type": 301
}, {
"regex": "/docs/v/zh_tw/(.*)",
"destination": "/docs/zh-TW/:1",
"type": 301
} ],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}