Skip to content

Instantly share code, notes, and snippets.

@alesanabv
Created October 20, 2016 01:50
Show Gist options
  • Save alesanabv/23953c68199515346f59aefc00bc997c to your computer and use it in GitHub Desktop.
Save alesanabv/23953c68199515346f59aefc00bc997c to your computer and use it in GitHub Desktop.
module.exports = {
watch: true,
entry: {
app: './client/app.js',
admin: './client/admin/app.js'
},
output: {
path: './public/js',
filename: '[name].js'
},
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment