How to disable vue-cli adding [if IE] tags to my html output?

270 Views Asked by At

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?

0

There are 0 best solutions below