From 36a8e2d113a83622ff4c58ff351d2201467ec7b3 Mon Sep 17 00:00:00 2001 From: Marshall <36639405+mdr0id@users.noreply.github.com> Date: Fri, 15 Nov 2024 09:59:58 -0800 Subject: [PATCH] Update conf.py Fix path issue --- docs/source/conf.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f97a128..0f079e4 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,12 +53,12 @@ # -- Options for HTML output html_theme = 'sphinx_rtd_theme' -html_static_path = ['../../_static'] # Updated path +html_static_path = ['../_static'] # Updated path html_css_files = [ 'css/custom.css', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css', ] -html_images_path = ['../../images'] # Updated path +html_images_path = ['../images'] # Updated path # SEO: Enhanced metadata html_title = "Jito Labs Documentation - High Performance Solana Infrastructure" @@ -81,8 +81,8 @@ } # Logo configuration -html_logo = '../../images/Jitolabs_Logo_White.png' # Updated path -html_favicon = '../../images/Jitolabs_Logo_White.png' # Updated path +html_logo = '../images/Jitolabs_Logo_White.png' +html_favicon = '../images/Jitolabs_Logo_White.png' # Source configuration source_suffix = { @@ -127,7 +127,7 @@ # Add Open Graph metadata here instead of theme options 'og_description': 'Documentation for Jito Labs - High Performance Solana Infrastructure, Block Engine, and MEV Solutions', 'og_type': 'website', - 'og_image': '../../images/Jitolabs_Logo_White.png', # Updated path + 'og_image': '../images/Jitolabs_Logo_White.png', # Updated path 'canonical_url': set_url, }