This is the code from my index.html
:
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel='icon' href="public\img\favicon.png">
<title>ContreversyMedia</title>
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" /></link>-->
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
I'm attempting to change the default icon that displays in the browser tabs:
https://i.sstatic.net/qWmrs.png
This is my public folder structure:
https://i.sstatic.net/llIgQ.png
The issue arises when I removed the pwa file and deleted all icons in the public\img\icons folder, yet the DevTools still show files located there even though the folder is empty. I've cleared my browser cache and tried different browsers, but the problem persists:
https://i.sstatic.net/hhgIs.png
I am unsure of how to handle this situation as I am not familiar with vuejs and its template workings.