Skip to content

Commit

Permalink
Updated Docusarus to 3.5 and added redirects.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Sep 1, 2024
1 parent 6b63cf7 commit 7812963
Show file tree
Hide file tree
Showing 4 changed files with 4,676 additions and 4,468 deletions.
6 changes: 6 additions & 0 deletions .vortex/.ahoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ commands:
[ ! -d ./docs/node_modules ] && npm --prefix docs ci
npm --prefix docs run start
docs-serve:
name: Serve built documentation.
cmd: |
[ ! -d ./docs/node_modules ] && npm --prefix docs ci
npm --prefix docs run serve
build-docs:
name: Build documentation.
cmd: |
Expand Down
14 changes: 14 additions & 0 deletions .vortex/docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,20 @@ const config = {
},
},
}),

plugins: [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
{
from: '/quickstart',
to: '/getting-started/installation',
},
],
},
],
],
};

export default config;
Loading

1 comment on commit 7812963

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.