.html relative imports

Hey

I'm trying to move my project into a monorepo.

I used to have:
<link rel="icon" type="image/png" href="/src/assets/images/favicon.png" />

now I have
<link rel="icon" type="image/png" href="../assets/images/favicon.png" />


which results in the error:
Failed to resolve '../assets/images/favicon.png' from './apps/dash/.plasmo/newtab.html'


The index.html is in apps/dash/src/newtab/index.html, and the image is in apps/dash/src/assets/images/favicon.png
Was this page helpful?