From 1297eb4cca20f70ab37f87a5cef5ee2046adf984 Mon Sep 17 00:00:00 2001 From: SanjayramVempati <101228879+SanjayramVempati@users.noreply.github.com> Date: Fri, 27 Jan 2023 10:59:19 -0500 Subject: [PATCH] Added app route for tailwind file --- app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.py b/app.py index a5eb5d1..3fad7c4 100644 --- a/app.py +++ b/app.py @@ -16,6 +16,10 @@ css.build() def homepage(): return render_template("index.html") +@app.route("/tw") +def tw(): + return render_template("tw.html") + #Modify to get data @app.route('/api/datapoint') def api_datapoint():