Skip to content

Instantly share code, notes, and snippets.

@tribou
Last active December 25, 2015 17:09
Show Gist options
  • Save tribou/a3781aa24f10e74e8458 to your computer and use it in GitHub Desktop.
Save tribou/a3781aa24f10e74e8458 to your computer and use it in GitHub Desktop.
// Webpack config file
module.exports = {
entry: './assets/js/components/Index.jsx',
output: {
path: __dirname + '/assets/js',
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.jsx$/,
loader: 'babel-loader'
}
]
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment