1.8 KiB
title |
---|
Story rendering |
In Storybook, your stories render in a special “preview” iframe (Canvas tab) inside the larger Storybook web application. The JavaScript build configuration of the preview is controlled by a webpack config, but you also may want to directly control the HTML that is rendered to help your stories render correctly.
Adding to <head>
If you need to add extra elements to the head
of the preview, for instance to load static stylesheets, font files, or similar, you can create a file called .storybook/preview-head.html
and add tags like this:
<!-- .storybook/preview-head.html -->
<!-- Pull in static files served from your Static director or the internet -->
<link rel=”preload” href=”your/font” />
<!-- Or you can load custom head-tag JavaScript: -->
<script src="https://use.typekit.net/xxxyyy.js"></script>
<script>try{ Typekit.load(); } catch(e){ }</script>
Storybook will inject these tags to the iframe where your components are rendered. So, these won’t be loaded into the main Storybook UI.
Adding to
Sometimes, you may need to add different tags to the HTML body. This is useful for adding some custom content roots.
You can accomplish this by creating a file called preview-body.html
inside your .storybook
directory and add tags like this:
<!-- .storybook/preview-body.html -->
<div id="custom-root"></div>
If using relative sizing in your project (like rem
or em
), you may update the base font-size
by adding a style
tag to preview-body.html
:
<style>
body {
font-size: 15px;
}
</style>
Important
Storybook will inject these tags to the iframe where your components are rendered. So, these won’t be loaded into the main Storybook UI.