fix: explictly add sphinx_rtd_theme to extensions to fix search

Ref https://sphinx-rtd-theme.readthedocs.io/en/stable/changelog.html#known-issues

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
Richard Steinmetz
2023-03-22 07:10:10 +01:00
parent 8be636b0c8
commit 8c53dccfb0

View File

@ -8,7 +8,7 @@ dir_path = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, os.path.abspath(dir_path + '/_ext'))
now = datetime.datetime.now()
extensions = []
extensions = ['sphinx_rtd_theme']
# General information about the project.
copyright = str(now.year) + ' Nextcloud GmbH'