Skip to content

Commit

Permalink
Update conf.py
Browse files Browse the repository at this point in the history
Fix path issue
  • Loading branch information
mdr0id authored Nov 15, 2024
1 parent 565c09a commit 36a8e2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 = {
Expand Down Expand Up @@ -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,
}

Expand Down

0 comments on commit 36a8e2d

Please sign in to comment.