From de78fb9aab02c2e7eb7d7099525eec8b7bed243f Mon Sep 17 00:00:00 2001 From: antho1404 Date: Tue, 16 Apr 2024 18:07:18 +0700 Subject: [PATCH] fix missing redirection in docs --- docs/next.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/next.config.js b/docs/next.config.js index 13fb2ad7..c4bc1dae 100644 --- a/docs/next.config.js +++ b/docs/next.config.js @@ -9,4 +9,13 @@ const withNextra = require('nextra')({ }) module.exports = withNextra({ reactStrictMode: true, + redirects: async () => { + return [ + { + source: '/guides', + destination: '/guides/setup-fees', + permanent: false, + }, + ] + }, })