mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title><%= typeof title !== 'undefined'? title : 'Storybook'%></title>
|
|
|
|
<link rel="shortcut icon" href="./favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link href="./sb-preview/runtime.mjs" rel="preload" as="script">
|
|
|
|
<% 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>
|
|
</body>
|
|
</html>
|