Initial commit

This commit is contained in:
Edin Dazdarevic
2016-11-07 11:17:48 +01:00
commit 8f613f1f73
32 changed files with 24649 additions and 0 deletions

16
web/webpack.config.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
entry: ["./index.js"],
output: {
path: __dirname + "/dist",
filename: "app.bundle.js"
},
module: {
loaders: [
{
test: /.js?$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
}
}