Skip to content

Commit a5455e1

Browse files
committed
attempting to fix html static path warning, and css issues: readthedocs/readthedocs.org#1776
1 parent 8f3b734 commit a5455e1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/conf.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,13 @@ def setup(app):
183183
# Add any paths that contain custom static files (such as style sheets) here,
184184
# relative to this directory. They are copied after the builtin static files,
185185
# so a file named "default.css" will overwrite the builtin "default.css".
186-
html_static_path = ['_static']
186+
# - attempt to solve RTD from throwing a WARNING: html_static_theme
187+
# entry ... does not exist
188+
# - see issue #1776 on rtfd/readthedocs.org
189+
# (https://github.com/rtfd/readthedocs.org/issues/1776)
190+
#
191+
# html_static_path = ['_static']
192+
html_static_path = []
187193

188194

189195
# -- Options for HTMLHelp output ------------------------------------------

0 commit comments

Comments
 (0)