I am facing an issue with my index.html file where the assets inside the head
tag are not loading as images but as the index.html file itself. I have included the following links in my head tag:
<link rel="apple-touch-icon" sizes="60x60" href="./assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/icons/favicon-16x16.png">
<link rel="manifest" href="./assets/manifest.json">
I am wondering if Webpack does not process index.html or if there is another way to add processed content into the head
tag. Should I move these assets to the static
directory instead?