Skip to content

Instantly share code, notes, and snippets.

@m4tthumphrey
Created October 20, 2014 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m4tthumphrey/898d7d1f7587dfb1c3d7 to your computer and use it in GitHub Desktop.
Save m4tthumphrey/898d7d1f7587dfb1c3d7 to your computer and use it in GitHub Desktop.
module.exports = {
entry: './js/app.js',
output: {
filename: './js/bundle.js'
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'jsx?harmony'
},
{
test: /\.(png|jpg|gif)$/,
loader: 'url?limit=8192'
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment