Skip to content

Instantly share code, notes, and snippets.

@johngarcia9110
Last active February 25, 2017 18:55
Show Gist options
  • Save johngarcia9110/431047430c4647ea5da148ec954394b1 to your computer and use it in GitHub Desktop.
Save johngarcia9110/431047430c4647ea5da148ec954394b1 to your computer and use it in GitHub Desktop.
module.exports = {
entry : ['babel-polyfill','./app/index.js'],
output : {
path : __dirname + '/build',
filename : 'bundle.js'
},
module : {
loaders : [
{
loader : 'babel-loader',
test : /\.js$/,
exclude : /node_modules/
}
]
},
devServer : {
port : 3333,
contentBase : './build',
inline : true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment