Skip to content

Instantly share code, notes, and snippets.

@jackcallister
Created November 7, 2014 03:41
Show Gist options
  • Save jackcallister/599a5de9eefbc41bc33f to your computer and use it in GitHub Desktop.
Save jackcallister/599a5de9eefbc41bc33f to your computer and use it in GitHub Desktop.
Webpack Component Config
module.exports = {
entry: './example/main.js',
output: {
filename: './build/bundle.js'
},
module: {
loaders: [
{test: /\.js$/, loader: 'jsx-loader'}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment