Move RN options to DefinePlugin

This commit is contained in:
Hypnosphi 2018-04-18 01:52:41 +03:00
parent cad0be07ec
commit de52d74873
2 changed files with 3 additions and 6 deletions

View File

@ -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: [

View File

@ -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>