From 06109b00e2fbcddae36aa4a79559101480bb123c 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 9c23125e57..ecd30fd75c 100644 --- a/docs/.vitepress/config.mjs +++ b/docs/.vitepress/config.mjs @@ -20,6 +20,10 @@ export default defineConfig({ root: i18n.en_US }, themeConfig: { + docFooter: { + prev: false, + next: false + }, socialLinks: [ { icon: 'discord', link: 'https://discord.gg/MWxPgEp' }, { icon: 'github', link: 'https://github.com/hacks-guide/Guide_3DS' }