From c855c3d05a5b1c3d97c0eeb19110f86bec46fb76 Mon Sep 17 00:00:00 2001 From: Marshall <36639405+mdr0id@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:07:25 -0800 Subject: [PATCH] Update conf.py Fix rtd directory url issue --- docs/source/conf.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0f079e4..083c00b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,8 +63,8 @@ # SEO: Enhanced metadata html_title = "Jito Labs Documentation - High Performance Solana Infrastructure" html_short_title = "Jito Docs" -html_baseurl = set_url -html_use_opensearch = set_url +html_baseurl = 'https://docs.jito.wtf' +html_use_opensearch = 'https://docs.jito.wtf' sitemap_url_scheme = "{link}" # Theme options @@ -78,6 +78,7 @@ 'navigation_depth': 4, 'analytics_id': '', # Add your Google Analytics ID 'analytics_anonymize_ip': False, + 'use_directory_urls': True, } # Logo configuration @@ -99,7 +100,7 @@ # Clean URLs html_link_suffix = '' -html_file_suffix = '.html' +html_file_suffix = None html_permalinks = True html_permalink_builder = True html_extra_path = ['robots.txt']