mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 12:27:46 +00:00
28 lines
626 B
JavaScript
28 lines
626 B
JavaScript
module.exports = [
|
|
[
|
|
'@docusaurus/plugin-client-redirects',
|
|
{
|
|
redirects: [
|
|
{
|
|
to: '/',
|
|
from: ['/conf', '/developerdays', '/developerdays/agenda'],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
[
|
|
'@docusaurus/plugin-content-docs',
|
|
{
|
|
id: 'idn',
|
|
path: 'products/idn',
|
|
routeBasePath: 'idn',
|
|
editUrl:
|
|
'https://github.com/sailpoint-oss/developer-community-site/edit/main/',
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
sidebarPath: require.resolve('./products/idn/sidebar.js'),
|
|
docItemComponent: '@theme/ApiItem',
|
|
},
|
|
]
|
|
];
|