From e029166ba64ad5c7ff5523fedf55257aab191d0b Mon Sep 17 00:00:00 2001 From: rob Date: Wed, 31 Dec 2025 20:08:20 -0400 Subject: [PATCH] Change web blueprint static URL path to avoid conflict MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The main Flask app and web blueprint both used /static, causing conflicts. Changed web blueprint to use /web-static instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/smarttools/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smarttools/web/__init__.py b/src/smarttools/web/__init__.py index 5550aae..1defcec 100644 --- a/src/smarttools/web/__init__.py +++ b/src/smarttools/web/__init__.py @@ -11,5 +11,5 @@ web_bp = Blueprint( __name__, template_folder=os.path.join(_pkg_dir, "templates"), static_folder=os.path.join(_pkg_dir, "static"), - static_url_path="/static", + static_url_path="/web-static", )