From f1db1755b9d88bd766d519def1a5cd2fae0b9f65 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Tue, 11 Jan 2022 15:16:16 +0100 Subject: [PATCH] fix(doc): Fixing default url of the documentation --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 995d5fa2d..371e35538 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ project = 'Concrete Compiler' copyright = '2021, Zama' author = 'Zama' description = 'Concrete Compiler is part of Zama Concrete Framework that help you turn any program into its homomorphic equivalent.' -root_url = os.environ.get("DOC_ROOT_URL", "") +root_url = os.environ.get("DOC_ROOT_URL", "/concrete-compiler") root_url = root_url if root_url.endswith('/') else root_url + '/' # The full version, including alpha/beta/rc tags