Skip to content

Instantly share code, notes, and snippets.

@samsch
Created April 14, 2017 18:12
Embed
What would you like to do?
Changed webpack config to use babel loader for .jsx files.
},
module: {
rules: [
{
- test : /\.js/,
+ test : /\.jsx?/,
include: path.resolve(__dirname, 'src/'),
use: ['babel-loader'],
},
],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment