On repl.it, running flask works fine with something like
@app.route("/home")
def home():
return render_template("home.html")
As the home template is rendered in the inspector

However, running
@app.route("/")
def base_route():
return redirect(url_for("home"))
@app.route("/home")
def home():
return render_template("home.html")
Fails to render the page. No errors/exceptions are thrown.
Is this an issue with repl, or is the code just wrong?
