Answers for "where should favicon.ico be placed in flask app"

0

where should favicon.ico be placed in flask app

<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
Posted by: Guest on July-31-2020
0

where should favicon.ico be placed in flask app

app.add_url_rule('/favicon.ico',
                 redirect_to=url_for('static', filename='favicon.ico'))
Posted by: Guest on May-27-2021

Code answers related to "where should favicon.ico be placed in flask app"

Browse Popular Code Answers by Language