How does vue-cli eliminate some unwanted head when packing?

for example, I don"t want something in this part of head

<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title">
<link rel="apple-touch-icon" href="img/icons/apple-touch-icon-152x152.png">
<link rel="mask-icon" href="img/icons/safari-pinned-tab.svg" color="-sharp4DBA87">
<meta name="msapplication-TileImage" content="img/icons/msapplication-icon-144x144.png">
<meta name="msapplication-TileColor" content="-sharp000000">

how can I get rid of it?

Aug.27,2021

look for index.html where is the configuration, change the configuration


vue-cli the packaged html file should be based on / public/index.html the html template file
should not have these meta tags by default, did you add it yourself later?

Menu