mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:11:26 +08:00
26 lines
691 B
JavaScript
26 lines
691 B
JavaScript
import url from 'url';
|
|
|
|
export default function (headHtml, publicPath) {
|
|
return `
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script>
|
|
if (window.parent !== window) {
|
|
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
}
|
|
</script>
|
|
<title>React Storybook</title>
|
|
${headHtml}
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<div id="error-display"></div>
|
|
<script src="${url.resolve(publicPath, 'preview.bundle.js')}"></script>
|
|
</body>
|
|
</html>
|
|
`;
|
|
}
|