3
Comment déployer un favicon sur Heroku?
J'ai le Hello worldcode suivant pour mon application Heroku. Toujours dans le dossier racine de mon projet, j'ai un fichier favicon.ico. import os from flask import Flask app = Flask(__name__) html = ''' <!doctype html> <html> <head> <link rel="shortcut icon" href="/webmasters//favicon.ico"> <title>Hello world!</title> </head> <body> <p>Hello world!</p> </body> </html> ''' …