Commit 907045b2 authored by Mike Greiling's avatar Mike Greiling

enable scope hoisting only in produciton (it interferes with HMR)

parent c628f8f4
...@@ -222,9 +222,6 @@ const config = { ...@@ -222,9 +222,6 @@ const config = {
names: ['main', 'common', 'webpack_runtime'], names: ['main', 'common', 'webpack_runtime'],
}), }),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// copy pre-compiled vendor libraries verbatim // copy pre-compiled vendor libraries verbatim
new CopyWebpackPlugin([ new CopyWebpackPlugin([
{ {
...@@ -281,6 +278,7 @@ if (IS_PRODUCTION) { ...@@ -281,6 +278,7 @@ if (IS_PRODUCTION) {
minimize: true, minimize: true,
debug: false, debug: false,
}), }),
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.optimize.UglifyJsPlugin({ new webpack.optimize.UglifyJsPlugin({
sourceMap: true, sourceMap: true,
}), }),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment