I'm in a vue-cli created project.
I have an icon reference in my public/index.html file which is intended for android phones.
<link rel="icon" sizes="192x192" href="/img/icons/touch-icon-192x192.png">
But after the application builds, the output is:
<!--[if IE]><link rel="icon" sizes="192x192" href="/img/icons/touch-icon-192x192.png"><![endif]-->
How do I prevent vue-cli, or the vue-pwa-plugin from adding any "if IE" tags to my output?