From aaad3ce359dcaa50e3549efb2c2b240c1b0c2b42 Mon Sep 17 00:00:00 2001 From: Yann Pellegrini Date: Fri, 22 May 2026 13:47:41 +0200 Subject: [PATCH] Add baseurl to favor stable versions in search engines https://github.com/napari/docs/issues/364 --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 569b5b0da..031a0f41f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,6 +70,7 @@ html_theme = 'napari_sphinx_theme' html_title = 'napari' html_sourcelink_suffix = '' +html_baseurl = 'https://napari.org/stable/' # Check version and set version_match which is used by the version switcher version_match = 'dev' if version == 'dev' else str(release)