open-vault/website/redirects.js
Brandon Romano a74cc88c45
Updates for Plugin Portal deprecation in favor of new Integrations section (#18898)
* 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>
2023-01-31 10:17:18 -08:00

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,
}
]