I am working with Sphinx and I want to set the html_static_path variable in the config.py file. The default was:
html_static_path = ['_static']
My project setup is:
docs/
build/
doctrees
html/
_static/
source/
conf.py
The sphinx documentation says that I need to set the path relative to this directory, i.e. relative path from conf.py. Thus, I tried:
html_static_path = ['..\build\html\source\_static']
AND I tried to set the absolute path. But I still get the warning:
WARNING: html_static_path entry 'build\html\source\_static' does not exist
Can you help me? Thank you!