mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title><%= typeof title !== 'undefined'? title : 'Storybook'%></title>
|
|
|
|
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
|
|
<% 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>
|