mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:11:06 +08:00
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title><%= typeof title !== 'undefined'? title : 'Storybook'%></title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<% if (favicon.endsWith('.svg')) {%>
|
|
<link rel="icon" type="image/svg+xml" href="./<%= favicon %>" />
|
|
<% } else if (favicon.endsWith('.ico')) { %>
|
|
<link rel="icon" type="image/x-icon" href="./<%= favicon %>" />
|
|
<% } %>
|
|
|
|
<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-bold.woff2" as="font" type="font/woff2" crossorigin />
|
|
<link rel="stylesheet" href="./sb-common-assets/fonts.css" />
|
|
|
|
<% if (typeof head !== 'undefined') { %> <%- head %> <% } %>
|
|
|
|
<style>
|
|
#storybook-root[hidden] {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
|
|
<% files.css.forEach(file => { %>
|
|
<link href="<%= file %>" rel="stylesheet" />
|
|
<% }); %>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
|
|
<% if (typeof globals !== 'undefined' && Object.keys(globals).length) { %>
|
|
<script>
|
|
<% for (var varName in globals) { %>
|
|
<% if (globals[varName] !== undefined) { %>
|
|
window['<%=varName%>'] = <%- (globals[varName]) %>;
|
|
<% } %>
|
|
<% } %>
|
|
</script>
|
|
<% } %>
|
|
|
|
<script type="module">
|
|
import './sb-manager/runtime.mjs';
|
|
|
|
<% files.js.forEach(file => { %>
|
|
import '<%= file %>';
|
|
<% }); %>
|
|
</script>
|
|
|
|
<link href="./sb-preview/runtime.mjs" rel="preload" as="script" />
|
|
</body>
|
|
</html>
|