Merge pull request #1468 from thornbill/fix-ios-link

Fix quick start guide link redirect for iOS app
This commit is contained in:
Niels van Velzen
2025-07-25 18:58:56 +02:00
committed by GitHub
+7 -2
View File
@@ -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;