Files
old-kivi/web/webpack.config.js
2017-04-11 10:43:05 +02:00

18 lines
308 B
JavaScript

module.exports = {
entry: ["./src/index.js"],
output: {
path: __dirname + "/dist",
filename: "app.bundle.js",
publicPath: "http://0.0.0.0:8080/"
},
module: {
loaders: [
{
test: /.js?$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
}
}