a74cc88c45
* Add Redirect for Plugin Portal -> Integration Library * Remove Plugin Portal page & update sidebar * Replace the Plugin Portal link to point Vault Integrations (#18897) * Replace the Plugin Portal link to point Vault Integrations * Update website/content/docs/partnerships.mdx Co-authored-by: Brandon Romano <brandon@hashicorp.com> --------- Co-authored-by: Brandon Romano <brandon@hashicorp.com> --------- Co-authored-by: Yoko Hyakuna <yoko@hashicorp.com>
14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
module.exports = [
|
|
// example redirect:
|
|
// {
|
|
// source: '/vault/docs/some/path',
|
|
// destination: '/vault/docs/some/other/path',
|
|
// permanent: true,
|
|
// },
|
|
{
|
|
source: '/vault/docs/plugins/plugin-portal',
|
|
destination: '/vault/integrations',
|
|
permanent: true,
|
|
}
|
|
]
|