where should favicon ico be placed in flask app

Solutions on MaxInterview for where should favicon ico be placed in flask app by the best coders in the world

showing results for - "where should favicon ico be placed in flask app"
Alessandra
28 Aug 2018
1<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
2
Nicole
01 Nov 2017
1app.add_url_rule('/favicon.ico',
2                 redirect_to=url_for('static', filename='favicon.ico'))
3
similar questions