Skip to content

Commit

Permalink
.nojekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jun 5, 2024
1 parent c6dea2c commit c7dc211
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
import shlex
workdir = Path(__file__).parent.parent
call(shlex.split("poetry run sphinx-apidoc -o docs/source thundra thundra.core thundra.profiler thundra.storage"))
call(shlex.split("poetry run make html"), cwd=workdir / "docs")
call(shlex.split("poetry run make html"), cwd=workdir / "docs")
with open(workdir / "_build/html/.nojekyll", "wb") as file:
file.write(b"")
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'furo'
# html_static_path = ['_static']
html_static_path = ['static']

0 comments on commit c7dc211

Please sign in to comment.