You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/website/redirects.js

31 lines
816 B

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
module.exports = [
// define your custom redirects within this file.
// vercel's redirect documentation: https://vercel.com/docs/project-configuration#project-configuration/redirects
// example redirect:
// {
// source: '/boundary/docs/some/path',
// destination: '/boundary/docs/some/other/path',
// permanent: true,
// },
{
source: '/boundary/docs/what-is-boundary',
destination: '/boundary/docs/overview/what-is-boundary',
permanent: true,
},
{
source: '/boundary/docs/use-cases',
destination: '/boundary/docs/overview/use-cases',
permanent: true,
},
{
source: '/boundary/docs/roadmap',
destination: 'boundary/docs/overview/what-is-boundary',
permanent: true,
},
]