From e6ddfce5d9861edd30f88604242e0e72e9c64115 Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Mon, 16 Sep 2024 15:21:10 -0700 Subject: [PATCH] config: disable prev/next buttons entirely They don't work the way our guide does. Our guide, for a lack of a better word, interleaves between paths, so the next button is almost always incorrect. We have always added a button to the correct next page manually anyway, so just rely on that. --- docs/.vitepress/config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/.vitepress/config.mjs b/docs/.vitepress/config.mjs index 4e785e27..179e9712 100644 --- a/docs/.vitepress/config.mjs +++ b/docs/.vitepress/config.mjs @@ -15,6 +15,10 @@ export default defineConfig({ description: "Switch CFW Guide.", head: [['link', { rel: 'icon', href: '/img/favicon.ico' }]], themeConfig: { + docFooter: { + prev: false, + next: false + }, socialLinks: [ { icon: 'discord', link: 'https://discord.gg/C29hYvh' }, { icon: 'github', link: 'https://github.com/nh-server/switch-guide' }