diff --git a/files/routes/static.py b/files/routes/static.py index a85e670ea..f0e2417d8 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -8,6 +8,9 @@ from os import path site = environ.get("DOMAIN").strip() site_name = environ.get("SITE_NAME").strip() +@app.route("/svelte") +def svelte(): + return render_template('svelte.html') @app.get('/rules') @auth_desired diff --git a/files/templates/svelte.html b/files/templates/svelte.html new file mode 100644 index 000000000..8202673aa --- /dev/null +++ b/files/templates/svelte.html @@ -0,0 +1 @@ + \ No newline at end of file