mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
Move RN options to DefinePlugin
This commit is contained in:
parent
cad0be07ec
commit
de52d74873
@ -24,7 +24,6 @@ const getConfig = options => ({
|
||||
filename: 'index.html',
|
||||
data: {
|
||||
version,
|
||||
options: JSON.stringify(options),
|
||||
},
|
||||
template: indexHtmlPath,
|
||||
}),
|
||||
@ -32,6 +31,9 @@ const getConfig = options => ({
|
||||
new CaseSensitivePathsPlugin(),
|
||||
new WatchMissingNodeModulesPlugin(nodeModulesPaths),
|
||||
new Dotenv({ silent: true }),
|
||||
new webpack.DefinePlugin({
|
||||
storybookOptions: JSON.stringify(options),
|
||||
}),
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
|
@ -11,10 +11,5 @@
|
||||
</head>
|
||||
<body style="margin: 0;">
|
||||
<div id="root"></div>
|
||||
<% if (htmlWebpackPlugin.options.data.options) { %>
|
||||
<script>
|
||||
window.storybookOptions = <%= htmlWebpackPlugin.options.data.options %>;
|
||||
</script>
|
||||
<% } %>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user