Skip to content

Commit 257ebd3

Browse files
committed
webpack: Disable ModuleConcatenationPlugin
Until a new release of react-loadable is made with the fix applied inhttps://github.com/jamiebuilds/react-loadable/commit/65abc58456a1bf027b883be78fbe32da9d6a4f53
1 parent 721b695 commit 257ebd3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

internals/webpack/webpack.prod.babel.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ const config = require('./webpack.base.babel');
44

55
module.exports = (options) => config({
66
plugins: [
7-
new webpack.optimize.ModuleConcatenationPlugin(),
7+
// We need to disable this until a release
8+
// of react-loadable is shipped with:
9+
// https://github.com/jamiebuilds/react-loadable/commit/65abc58456a1bf027b883be78fbe32da9d6a4f53
10+
//
11+
// new webpack.optimize.ModuleConcatenationPlugin(),
812
new webpack.optimize.CommonsChunkPlugin({
913
name: 'vendor',
1014
children: true,

0 commit comments

Comments
 (0)