From 5a7fe41118b593b66fc13c0cd7438a72002aa910 Mon Sep 17 00:00:00 2001 From: mdryaan Date: Wed, 13 May 2026 09:38:09 +0530 Subject: [PATCH] fix(config): correct editUrl repo name from koordinator.sh to website Signed-off-by: mdryaan --- docusaurus.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 8606d39f1b1..be1ea494860 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -57,7 +57,7 @@ const config = { locale, docPath, }) { - return `https://github.com/koordinator-sh/koordinator.sh/edit/main/docs/${docPath}`; + return `https://github.com/koordinator-sh/website/edit/main/docs/${docPath}`; }, showLastUpdateAuthor: true, showLastUpdateTime: true, @@ -78,7 +78,7 @@ const config = { showReadingTime: true, // Please change this to your repo. editUrl: - 'https://github.com/koordinator-sh/koordinator.sh/edit/main/', + 'https://github.com/koordinator-sh/website/edit/main/', }, theme: { customCss: require.resolve('./src/css/custom.css'),