storybook/docs/snippets/common/storybook-preview-head-example.html.mdx
2020-08-18 17:30:56 +01:00

10 lines
341 B
Plaintext

```html
<!-- .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>
```