Fix favicon not showing in webview

This commit is contained in:
MartinBraquet
2025-11-01 16:03:39 +01:00
parent fe03e1ca68
commit f94820f45e

View File

@@ -4,8 +4,8 @@ import Image from "next/image";
type FavIconProps = React.SVGProps<SVGSVGElement>;
const FavIcon: React.FC<FavIconProps> = ({ className }) => (
<Image src="/favicon.ico" alt="Compass logo" width={500} height={500} className={"w-12 h-12 " + className}/>
// Need full domain for favicon to work properly on Webview
<Image src="https://compassmeet.com/favicon.ico" alt="Compass logo" width={500} height={500} className={"w-12 h-12 " + className}/>
);
export default FavIcon;