mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--suppress HtmlUnknownTarget -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><!-- [TITLE HERE] --></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<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>
|