chore: create redirects for onboarding links (#2169)

pull/2183/head
Cameron Perera 4 years ago committed by GitHub
parent b6ca61a7f6
commit 1da2cf06b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,6 @@
module.exports = [
// define your custom redirects within this file.
// vercel's redirect documentation: https://vercel.com/docs/configuration#project/redirects
// vercel's redirect documentation: https://vercel.com/docs/project-configuration#project-configuration/redirects
// Top level redirect
{
@ -13,6 +13,11 @@ module.exports = [
destination: '/docs',
permanent: false,
},
{
source: '/help/admin-ui/downloads',
destination: '/downloads',
permanent: true,
},
// `/<path>/index.html` to /<path>
{
@ -40,6 +45,28 @@ module.exports = [
'https://learn.hashicorp.com/tutorials/boundary/getting-started-desktop-app',
permanent: true,
},
{
source: '/help/admin-ui/getting-started/desktop',
destination:
'https://learn.hashicorp.com/tutorials/boundary/getting-started-desktop-app',
permanent: true,
},
/////////////////////////////////
// API CLIENT
/////////////////////////////////
{
source: '/help/admin-ui/api-client/cli',
destination:
'/docs/api-clients/cli',
permanent: true,
},
{
source: '/help/admin-ui/api-client/api',
destination:
'/docs/api-clients/api',
permanent: true,
},
/////////////////////////////////
// DOMAIN MODEL CONCEPTS

Loading…
Cancel
Save