diff --git a/website/docs/addons/addons.md b/website/docs/addons/addons.md index f39079fac6..7422ea4a70 100644 --- a/website/docs/addons/addons.md +++ b/website/docs/addons/addons.md @@ -9,10 +9,10 @@ Unleash Addons allows you to extend Unleash with new functionality. Currently, a Currently Unleash support the following Addons out of the box: -- [Webhook](./webhook) - A generic way to post messages from Unleash to third party services. -- [Slack](./slack) - Allows Unleash to post updates to Slack. -- [Microsoft Teams](./teams) - Allows Unleash to post updates to Microsoft Teams. -- [Datadog](./datadog) -allows Unleash to post Updates to Datadog when a feature toggle is updated. +- [Webhook](webhook.md) - A generic way to post messages from Unleash to third party services. +- [Slack](slack.md) - Allows Unleash to post updates to Slack. +- [Microsoft Teams](teams.md) - Allows Unleash to post updates to Microsoft Teams. +- [Datadog](datadog.md) -allows Unleash to post Updates to Datadog when a feature toggle is updated. In future releases we plan to support community built addons. diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 839b40b49a..881678bb27 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -31,7 +31,7 @@ module.exports = { activeBaseRegex: '(user_guide|sdks|addons|advanced)', }, { to: 'deploy/getting_started', label: 'Deploy and manage' }, - { to: 'integrations/integrations', label: 'Integrations' }, + { to: 'integrations', label: 'Integrations' }, { to: '/api', label: 'API' }, { href: 'https://www.getunleash.io/plans', @@ -147,6 +147,10 @@ module.exports = { to: '/advanced/toggle_variants', from: '/toggle_variants', }, + { + to: '/integrations', + from: '/integrations/integrations', + }, ], createRedirects: function(toPath) { if ( diff --git a/website/package.json b/website/package.json index 47b598f3c7..72e87cd358 100644 --- a/website/package.json +++ b/website/package.json @@ -14,9 +14,9 @@ "write-heading-ids": "docusaurus write-heading-ids" }, "dependencies": { - "@docusaurus/core": "2.0.0-beta.9", - "@docusaurus/plugin-client-redirects": "2.0.0-beta.9", - "@docusaurus/preset-classic": "2.0.0-beta.9", + "@docusaurus/core": "2.0.0-beta.14", + "@docusaurus/plugin-client-redirects": "2.0.0-beta.14", + "@docusaurus/preset-classic": "2.0.0-beta.14", "@docusaurus/remark-plugin-npm2yarn": "2.0.0-beta.14", "@mdx-js/react": "1.6.22", "@svgr/webpack": "6.2.0",