Skip to content

Commit

Permalink
Removed __DEV__ definition
Browse files Browse the repository at this point in the history
  • Loading branch information
chentsulin committed Jun 13, 2016
1 parent 8577b84 commit d6115cc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion webpack.config.development.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const config = {
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
__DEV__: true,
'process.env.NODE_ENV': JSON.stringify('development')
})
],
Expand Down
1 change: 0 additions & 1 deletion webpack.config.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const config = {
...baseConfig.plugins,
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DefinePlugin({
__DEV__: false,
'process.env.NODE_ENV': JSON.stringify('production')
}),
new webpack.optimize.UglifyJsPlugin({
Expand Down

0 comments on commit d6115cc

Please sign in to comment.