update hotfix

This commit is contained in:
Wolfang Torres
2026-06-07 00:46:04 +08:00
parent 3bb0caa64d
commit a2eb886887
2 changed files with 9 additions and 3 deletions

View File

@@ -1,8 +1,14 @@
# Pip # Pip
from flask import Blueprint, current_app, render_template, send_from_directory from flask import Blueprint, abort, current_app, render_template, send_from_directory
from jinja2 import TemplateNotFound from jinja2 import TemplateNotFound
homescreen = Blueprint("homescreen", __name__, template_folder="templates") homescreen = Blueprint(
"homescreen",
__name__,
template_folder="templates",
url_prefix="/hsk",
static_folder="static",
)
@homescreen.route("/") @homescreen.route("/")

View File

@@ -5,7 +5,7 @@ mainapp = Blueprint(
"mainapp", "mainapp",
__name__, __name__,
template_folder="templates", template_folder="templates",
url_prefix="/app", url_prefix="/hsk/app",
static_folder="static", static_folder="static",
) )