1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-15 17:13:16 +02:00
onion/webpack.config.js
2015-09-03 15:50:39 +02:00

19 lines
287 B
JavaScript

var webpack = require('webpack');
module.exports = {
entry: './js/app.js',
target: 'web',
output: {
path: __dirname,
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.js$/,
loader: 'babel'
}]
}
};