mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
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:
commit
89c5f3b528
@ -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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user