Thoughts
Always a bad day when you have to pull up the Chromium source code.
https://bugs.chromium.org/p/chromium/issues/detail?id=1162276
(For the record, the issue in question is that in the following case Chrome *always* picks the ico favicon. I skimmed the Chromium source and can't tell why this is the case, but if there's an ico available I don't think it's possible to get Chrome to use the SVG.
```
<link rel="icon" href="/static/images/favicon.ico">
<link rel="icon" type="image/svg+xml" href="/static/images/favicon.svg">
```
)
I'm going to address it by not shipping a .ico. Sorry IE 8 or whatever.