Skip to content

Instantly share code, notes, and snippets.

@barbier
Created April 5, 2017 19:43
Show Gist options
  • Save barbier/45cfa638856e83e32d443aa8be402737 to your computer and use it in GitHub Desktop.
Save barbier/45cfa638856e83e32d443aa8be402737 to your computer and use it in GitHub Desktop.
Simple Webpack config to use with React
module.exports = {
entry: [
'./src/index.js'
],
output: {
path: __dirname,
filename: 'app/js/main.js'
},
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets:['react', 'es2015']
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment