configure path to web files for Quart

This commit is contained in:
Stefan Allius
2025-04-16 19:41:27 +02:00
parent 80cefc8082
commit 3862abc8e4

View File

@@ -31,7 +31,9 @@ class ProxyState:
ProxyState._is_up = value
app = Quart(__name__)
app = Quart(__name__,
template_folder='web/templates',
static_folder='web/static')
app.register_blueprint(web_routes)