Created
October 20, 2014 15:11
-
-
Save m4tthumphrey/898d7d1f7587dfb1c3d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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