From d2d7b6e808f481aabb7ef69a8a330359e9bccd95 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 10 Jul 2023 21:45:07 -0700 Subject: [PATCH] Fix a warning about _static in docs builds --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index ce5f212..ff3ca53 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,7 +101,7 @@ html_title = "LLM" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] +html_static_path = [] # -- Options for HTMLHelp output ------------------------------------------