mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
47 lines
1007 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|