title |
---|
Images, fonts, and assets |
Components often rely on images, videos, fonts, and other assets to render as the user expects. There are many ways to use these assets in your story files.
You can import any media assets by importing (or requiring) them. It works out of the box with our default config. But, if you are using a custom webpack config, you’ll need to add the file loader to handle the required files.
Afterward, you can use any asset in your stories:
<CodeSnippets paths={[ 'react/component-story-static-asset-with-import.js.mdx', 'react/component-story-static-asset-with-import.ts.mdx', 'vue/component-story-static-asset-with-import.2.js.mdx', 'vue/component-story-static-asset-with-import.2.ts.mdx', 'vue/component-story-static-asset-with-import.3.js.mdx', 'vue/component-story-static-asset-with-import.3.ts.mdx', 'angular/component-story-static-asset-with-import.ts.mdx', 'svelte/component-story-static-asset-with-import.js.mdx', 'web-components/component-story-static-asset-with-import.js.mdx', 'web-components/component-story-static-asset-with-import.ts.mdx', 'solid/component-story-static-asset-with-import.js.mdx', 'solid/component-story-static-asset-with-import.ts.mdx', ]} usesCsf3 csf2Path="configure/images-and-assets#snippet-component-story-static-asset-with-import" />
We recommend serving static files via Storybook to ensure that your components always have the assets they need to load. We recommend this technique for assets that your components often use, like logos, fonts, and icons.
Configure a directory (or a list of directories) where your assets live when starting Storybook. Use the staticDirs
configuration element in your main Storybook configuration file (i.e., .storybook/main.js|ts
) to specify the directories:
<CodeSnippets paths={[ 'common/storybook-main-with-single-static-dir.js.mdx', 'common/storybook-main-with-single-static-dir.ts.mdx', ]} />
Here ../public
is your static directory. Now use it in a component or story like this.
<CodeSnippets paths={[ 'react/component-story-static-asset-without-import.js.mdx', 'react/component-story-static-asset-without-import.ts.mdx', 'vue/component-story-static-asset-without-import.js.mdx', 'vue/component-story-static-asset-without-import.ts.mdx', 'angular/component-story-static-asset-without-import.ts.mdx', 'svelte/component-story-static-asset-without-import.js.mdx', 'web-components/component-story-static-asset-without-import.js.mdx', 'web-components/component-story-static-asset-without-import.ts.mdx', 'solid/component-story-static-asset-without-import.js.mdx', 'solid/component-story-static-asset-without-import.ts.mdx', ]} usesCsf3 csf2Path="configure/images-and-assets#snippet-component-story-static-asset-without-import" />
You can also pass a list of directories separated by commas without spaces instead of a single directory.
<CodeSnippets paths={[ 'common/main-config-static-dirs.js.mdx', 'common/main-config-static-dirs.ts.mdx', ]} />
Or even use a configuration object to define the directories:
<CodeSnippets paths={[ 'common/main-config-static-dirs-with-object.js.mdx', 'common/main-config-static-dirs-with-object.ts.mdx', ]} />
Using --static-dir
or -s
option with Storybook CLI is deprecated. It is recommended to use Storybook static directory configuration option instead.
Upload your files to an online CDN and reference them. In this example, we’re using a placeholder image service.
<CodeSnippets paths={[ 'react/component-story-static-asset-cdn.js.mdx', 'react/component-story-static-asset-cdn.ts.mdx', 'vue/component-story-static-asset-cdn.js.mdx', 'vue/component-story-static-asset-cdn.ts.mdx', 'angular/component-story-static-asset-cdn.ts.mdx', 'svelte/component-story-static-asset-cdn.js.mdx', 'web-components/component-story-static-asset-cdn.js.mdx', 'web-components/component-story-static-asset-cdn.ts.mdx', 'solid/component-story-static-asset-cdn.js.mdx', 'solid/component-story-static-asset-cdn.ts.mdx', ]} usesCsf3 csf2Path="configure/images-and-assets#snippet-component-story-static-asset-cdn" />
Sometimes, you may want to deploy your Storybook into a subpath, like https://example.com/storybook
.
In this case, you need to have all your images and media files with relative paths. Otherwise, the browser cannot locate those files.
If you load static content via importing, this is automatic, and you do not have to do anything.
Suppose you are serving assets in a static directory along with your Storybook. In that case, you need to use relative paths to load images or use the base element.
After configuring Storybook to serve assets from your static folder, you can reference those assets in Storybook. For example, you can reference and apply a custom font in your stories.
Inside the .storybook/
configuration folder, create preview-head.html
, then use <link />
to reference your font.
<CodeSnippets paths={['common/storybook-preview-head-example.html.mdx']} />