mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<!--suppress HtmlUnknownTarget -->
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Storybook</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="preload" href="./sb-common-assets/nunito-sans-regular.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link rel="preload" href="./sb-common-assets/nunito-sans-italic.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link rel="preload" href="./sb-common-assets/nunito-sans-bold.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link rel="preload" href="./sb-common-assets/nunito-sans-bold-italic.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link rel="stylesheet" href="./sb-common-assets/fonts.css" />
|
|
|
|
<script>
|
|
window.CONFIG_TYPE = '[CONFIG_TYPE HERE]';
|
|
window.LOGLEVEL = '[LOGLEVEL HERE]';
|
|
window.FRAMEWORK_OPTIONS = '[FRAMEWORK_OPTIONS HERE]';
|
|
window.CHANNEL_OPTIONS = '[CHANNEL_OPTIONS HERE]';
|
|
window.FEATURES = '[FEATURES HERE]';
|
|
window.STORIES = '[STORIES HERE]';
|
|
window.DOCS_OPTIONS = '[DOCS_OPTIONS HERE]';
|
|
window.SERVER_CHANNEL_URL = '[SERVER_CHANNEL_URL HERE]';
|
|
|
|
// We do this so that "module && module.hot" etc. in Storybook source code
|
|
// doesn't fail (it will simply be disabled)
|
|
window.module = undefined;
|
|
</script>
|
|
<!-- [HEAD HTML SNIPPET HERE] -->
|
|
</head>
|
|
|
|
<body>
|
|
<!-- [BODY HTML SNIPPET HERE] -->
|
|
<div id="storybook-root"></div>
|
|
<div id="storybook-docs"></div>
|
|
<script type="module" src="./sb-preview/runtime.mjs"></script>
|
|
<script type="module" src="/virtual:/@storybook/builder-vite/vite-app.js"></script>
|
|
</body>
|
|
|
|
</html> |