Skip to content

Commit

Permalink
fix(webpack): re add object.assign
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjasort committed Sep 6, 2016
1 parent 128fa8d commit e5fceb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/configure-webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ export default function (config) {

// return webpack configuration
return {
dev: deepAssign(
dev: Object.assign(
{},
defaultWebpackDev,
bundle,
customWebpack.dev
),
prod: deepAssign(
prod: Object.assign(
{},
defaultWebpackProd,
bundle,
Expand Down

0 comments on commit e5fceb6

Please sign in to comment.