简体   繁体   中英

Favicon not displaying on staging server

Please help this here i'm trying to display title with logo on tab But in local it's working fine but staging server not displaying the logo.

<title>Global</title>   

<link type="image/png" href="src/assets/images/logo/bigImage.png" rel="shortcut icon" /> 

It's the same as adding any other external script or stylesheet. All you have to do is focus on giving the correct path and rel and type.

Note: When my favicon image was in the assets folder, it was not displaying the favicon. So I copied the image to the same folder as of my index.html and it worked perfectly as it should.

<head>
    <link rel="shortcut icon" type="image/png/ico" href="/favicon.png" />
    <title>SITE NAME</title>
</head>

It worked for me. I hope it works for you too.

You can also check some more answers here: Add Favicon with React and Webpack

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM