From 16c9e5beb3f57a1ce897b374aadd23f02a033c8d Mon Sep 17 00:00:00 2001 From: knugget Date: Thu, 9 Feb 2023 11:36:24 +0100 Subject: [PATCH] old docs forwards --- apps/formbricks-com/next.config.mjs | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) 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, + }, ]; }, };