headers: { accept: 'application/json', 'accept-charset': 'utf-8' }
module.exports = {
entry: "./server.js",
output: {
path: __dirname,
filename: "dist.js"
},
module : {
loaders: [ {
test : /.js$/,
loader : 'babel-loader'
}
]
}
};