diff --git a/docs/source/conf.py b/docs/source/conf.py index 616af7f5e..86995ff0c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -107,6 +107,8 @@ "navbar_center": "navbar-nav", } +html_favicon = "_static/torch-monarch-icons.svg" + html_sidebars = { "generated/examples/getting_started": [], "rust-api": [], @@ -146,6 +148,16 @@ # Configure Sphinx to include the books directory exclude_patterns = [] # Reset exclude_patterns to ensure books are included +html_baseurl = "https://meta-pytorch.org/monarch/" + +sitemap_locales = [None] +sitemap_excludes = [ + "search.html", + "genindex.html", +] +sitemap_url_scheme = "{link}" + + html_extra_path = ["../../target/doc"] html_static_path = ["_static"]