mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
use an inline esm instead
This commit is contained in:
parent
7743017cd0
commit
7dc6abf10c
@ -41,7 +41,12 @@
|
||||
<% } %>
|
||||
</script>
|
||||
<% } %>
|
||||
|
||||
<script id="storybook-script" type="module" src="sb-preview/index.mjs" data-files="<%= htmlWebpackPlugin.files.js.join(', ') %>"></script>
|
||||
<script type="module">
|
||||
import './sb-preview/index.mjs';
|
||||
|
||||
<% htmlWebpackPlugin.files.js.forEach(file => { %>
|
||||
import './<%= file %>';
|
||||
<% }); %>
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -21,19 +21,3 @@ import * as STORE from './store';
|
||||
(globalThis as any).__STORYBOOK_MODULE_CORE_EVENTS__ = CORE_EVENTS;
|
||||
(globalThis as any).__STORYBOOK_MODULE_PREVIEW_WEB__ = PREVIEW_WEB;
|
||||
(globalThis as any).__STORYBOOK_MODULE_STORE__ = STORE;
|
||||
|
||||
const element = document.getElementById('storybook-script');
|
||||
|
||||
if (element) {
|
||||
const { files } = element.dataset;
|
||||
|
||||
if (files) {
|
||||
const sources = files.split(',').map((file) => file.trim());
|
||||
|
||||
sources.forEach((source) => {
|
||||
const imported = document.createElement('script');
|
||||
imported.src = source;
|
||||
document.body.append(imported);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user