From 0d25f711bb23147d755f618567eabf6db32b58cc Mon Sep 17 00:00:00 2001 From: EmanuelM153 <134736553+EmanuelM153@users.noreply.github.com> Date: Sun, 30 Jun 2024 09:54:49 -0500 Subject: [PATCH] Fixed an error with the next and prev navigation. (#167) The configuration on the sidebar for the section "Nix Store & Binary Cache" on page "Add Binary Cache Servers" missed a '/' in the link to reference the root of the document. That error resulted only in the button "Next page" that referenced the "Preface" page. --- docs/.vitepress/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index ad3a7d4..08be023 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -235,7 +235,7 @@ function themeConfigEnglish() { { text: "Introduction", link: "/nix-store/intro.md" }, { text: "Add Binary Cache Servers", - link: "nix-store/add-binary-cache-servers.md", + link: "/nix-store/add-binary-cache-servers.md", }, { text: "Host Your Own Binary Cache Server",