8 lines
213 B
Python
8 lines
213 B
Python
from flask import Flask, send_from_directory
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/<path:path>")
|
|
def svelte_client(path):
|
|
print(f"Trying to return {path}")
|
|
return send_from_directory("webapp/public/", path) |