Skip to content

Commit

Permalink
Merge pull request #234 from liteflow-labs/fix/redirect-docs
Browse files Browse the repository at this point in the history
Fix missing redirection in docs
  • Loading branch information
antho1404 authored Apr 16, 2024
2 parents 8485e5f + de78fb9 commit 7565354
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,13 @@ const withNextra = require('nextra')({
})
module.exports = withNextra({
reactStrictMode: true,
redirects: async () => {
return [
{
source: '/guides',
destination: '/guides/setup-fees',
permanent: false,
},
]
},
})

0 comments on commit 7565354

Please sign in to comment.