Skip to content

Commit

Permalink
changed babel for babel loader in webpack config. #42
Browse files Browse the repository at this point in the history
  • Loading branch information
des-des committed Dec 8, 2015
1 parent fe5366e commit 483310d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.development.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
},
module: {
loaders: [
{ test: /\.jsx$/, exclude: /node_modules/, loaders: ['react-hot','babel']},
{ test: /\.jsx$/, exclude: /node_modules/, loaders: ['react-hot','babel-loader']},
{ test: /\.css$/, loader: 'style!css'}
]
},
Expand Down
2 changes: 1 addition & 1 deletion webpack.production.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
},
module: {
loaders: [
{ test: /\.jsx$/, exclude: /node_modules/, loaders: ['babel']},
{ test: /\.jsx$/, exclude: /node_modules/, loaders: ['babel-loader']},
{ test: /\.css$/, loader: 'style!css'}
]
},
Expand Down

0 comments on commit 483310d

Please sign in to comment.