storybook/docs/snippets/common/storybook-preview-head-example.html.mdx
Michael Shilman 396c33c60c Merge pull request #13081 from redian/patch-1
Update storybook-preview-head-example.html.mdx
2020-12-02 16:05:29 +08:00

11 lines
343 B
Plaintext

```html
<!-- .storybook/preview-head.html -->
<!-- Pull in static files served from your Static directory 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>
```