1.2.5
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 4m16s

This commit is contained in:
Karl 2025-07-15 10:20:06 +01:00
parent b339a00d4b
commit 891be7d502
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
1.2.4 1.2.5

4
app.py
View File

@ -50,9 +50,9 @@ def inject_version():
def make_session_permanent(): def make_session_permanent():
session.permanent = True session.permanent = True
@app.route('/manifest.json') @app.route('/site.webmanifest')
def serve_manifest(): def serve_manifest():
return send_file('manifest.json', mimetype='application/manifest+json') return send_from_directory(os.path.join(app.root_path, 'static'), 'site.webmanifest', mimetype='application/manifest+json')
@app.route("/favicon.ico") @app.route("/favicon.ico")
def favicon(): def favicon():