Does anybody have the same problem with SvelteKit? Why does it load the favicon on every page request? see attachment
Does anybody have the same problem with SvelteKit? Why does it load the favicon on every page request? see attachment
I don't have this issue with favicon. I'm setting favicon in top most __layout.svelte via <svelte:head> like this:
<svelte:head>
<link rel="icon" type="image/svg" href={icon-path} />
</svelte:head>