DEV Community

Cover image for Add a favicon to your Storybook application
Gérôme Grignon
Gérôme Grignon

Posted on • Originally published at gerome.dev

Add a favicon to your Storybook application

Favicons, short for "favorite icons," are small images or icons that appear in the browser tab, bookmarks, and other areas of the browser UI. Adding a favicon to your Storybook application can help to:

  • Improve branding and visual appeal: A well-designed favicon can help to reinforce your brand and make your Storybook application more visually appealing.

  • Enhance user experience: Favicons can make it easier for users to find and recognize your Storybook application among multiple tabs or bookmarks, enhancing the user experience.

  • Build trust and credibility: A favicon can also help build trust and credibility with your users by demonstrating attention to detail and a commitment to providing a professional and high-quality application.

Adding a favicon is a small but significant step that can help improve the user experience and make your Storybook application more memorable and distinctive.

So why not take this small but impactful step today and give your Storybook application that extra touch of visual appeal and professionalism?


To add a favicon for Storybook, follow these steps:

  • Create or obtain a favicon file matching the supported formats.

  • Place the favicon file in the public folder of your Storybook project as defined in your configuration.

  • Open the .storybook/manager-head.html file in your project, or create it if it doesn't exist.

  • Add the following code to the file to reference the favicon file:

<link rel="shortcut icon" href="/favicon.ico">
Enter fullscreen mode Exit fullscreen mode
  • Save the file and restart your Storybook server. Your favicon should now be visible in the browser tab for your Storybook application.

Warning: The default Storybook favicon overrides the new one with Chrome by running the application locally.

Oldest comments (2)

Collapse
 
kriptonian profile image
Sawan Bhattacharya

It really helped a lot, I checked many articles on this, but your instructions were more clear

Collapse
 
feliza profile image
f

I don’t know if this is my setting or the default, but when building storybook, it will actually merge two public dirs, one from storybook’s “staticDirs”, and one from vite’s “publicDir”, so the root /public ‘s favicon.ico will eventually overwrite the “staticDirs”’s one.

The solution is to also set vite’s publicDir to the same folder, like

const config: StorybookConfig = {
  // ...
  viteFinal: async (config) => {
    return {
      ...config,
      publicDir: "your/staticDir"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode