Merge pull request #1381 from storybooks/fix-rn-webpack-prod-config

Removed empty array, since webpack 2 doesn't support them anymore.
This commit is contained in:
Norbert de Langen 2017-07-04 15:11:25 +02:00 committed by GitHub
commit 89c5f3b528

View File

@ -2,15 +2,12 @@ import path from 'path';
import webpack from 'webpack';
import { OccurenceOrderPlugin, includePaths, excludePaths } from './utils';
const entries = {
preview: [],
manager: [path.resolve(__dirname, '../../manager')],
};
const config = {
bail: true,
devtool: '#cheap-module-source-map',
entry: entries,
entry: {
manager: [path.resolve(__dirname, '../../manager')],
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'static/[name].bundle.js',