Deliver the final svelte-kit build page

This commit is contained in:
Filip Krumpe 2022-01-10 22:32:54 +01:00
parent 8308049a90
commit 119e458c14

2
app.py
View File

@ -4,4 +4,4 @@ app = Flask(__name__)
@app.route("/<path:path>") @app.route("/<path:path>")
def svelte_client(path): def svelte_client(path):
return send_from_directory("webapp/public/", path) return send_from_directory("webapp/build/", path)