From a9fe938d0fddc7b869ce1d7ae58fad469d1a47a5 Mon Sep 17 00:00:00 2001 From: "Mike P. Sinn" <2808553+mikepsinn@users.noreply.github.com> Date: Sat, 11 May 2024 21:32:39 -0500 Subject: [PATCH] (fix): updated "edit this page" link in the docusaurus configuration The URL for the "edit this page" link in the Docusaurus configuration has been updated. Previously, the link pointed to the root repository, but now it leads directly to the editable document in the docs directory of the main branch. --- docs/docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 810246db..5a392d4a 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -59,7 +59,7 @@ export default async function createConfigAsync() { // Please change this to your repo. // Remove this to remove the "edit this page" links. remarkPlugins: [mdx_mermaid], - editUrl: "https://github.com/hypercerts-org/hypercerts", + editUrl: "https://github.com/hypercerts-org/hypercerts/edit/main/docs/", }, theme: { customCss: "./src/css/custom.css",