Fixed bug introduced in aa1ceb7739

This commit is contained in:
2026-02-28 13:12:28 +00:00
parent 49352cd0b2
commit 6f372c44e1

View File

@ -7,7 +7,7 @@ import os
import flask import flask
staticBP = flask.Blueprint('staticPage', __name__, static_folder='./www/') staticBP = flask.Blueprint('staticPage', __name__, static_folder='../www/')
@staticBP.route('/', defaults={'path': 'index.html'}) @staticBP.route('/', defaults={'path': 'index.html'})
@staticBP.route('/<path:path>') @staticBP.route('/<path:path>')