diff --git a/apps/formbricks-com/next.config.mjs b/apps/formbricks-com/next.config.mjs index 41cf8bf563..e7dcfca9ea 100644 --- a/apps/formbricks-com/next.config.mjs +++ b/apps/formbricks-com/next.config.mjs @@ -28,12 +28,37 @@ const nextConfig = { source: "/privacy", destination: "/privacy-policy", permanent: false, - }, + }, { source: "/form-hq", destination: "/formbricks-hq", permanent: false, }, + { + source: "/docs/formbricks-hq/self-hosting", + destination: "/docs", + permanent: false, + }, + { + source: "/docs/react-form-library/getting-started", + destination: "/docs", + permanent: false, + }, + { + source: "/docs/react-form-library/work-with-components", + destination: "/docs", + permanent: false, + }, + { + source: "/docs/react-form-library/introduction", + destination: "/docs", + permanent: false, + }, + { + source: "/docs/formbricks-hq/schema", + destination: "/docs", + permanent: false, + }, ]; }, };