mirror of
https://github.com/jellyfin/jellyfin.org.git
synced 2026-09-03 04:20:03 +03:00
Merge pull request #1468 from thornbill/fix-ios-link
Fix quick start guide link redirect for iOS app
This commit is contained in:
+7
-2
@@ -114,8 +114,13 @@ const redirects: ClientRedirects.Options['redirects'] = [
|
||||
},
|
||||
// quick start replaced with post install
|
||||
{
|
||||
from: '/docs/general/quick-start',
|
||||
to: '/docs/general/post-install/setup-wizard'
|
||||
from: [
|
||||
'/docs/general/quick-start',
|
||||
// the .html url is linked from the iOS app
|
||||
'/docs/general/quick-start.html'
|
||||
],
|
||||
// TODO: create a better replacement page with similar content to the quick start guide
|
||||
to: '/docs/'
|
||||
}
|
||||
];
|
||||
export default redirects;
|
||||
|
||||
Reference in New Issue
Block a user