I am developing a web app in app engine python, I cant find GET /favicon.ico in console when I execute it in chrome or IE. Whereas there is no issue with firefox or safari, my favicon.ico is displayed in it.
here is my handlers in app.yaml:
handlers:
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
- url: /sitemap.xml
static_files: sitemap.xml
upload: sitemap.xml
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /static
static_dir: static
- url: .*
script: main.app
There is no 404 error for favicon, /facivon.ico not getting executed in chrome , IE.