Files
old-kivi/web/webpack.config.js

18 lines
319 B
JavaScript
Raw Normal View History

2016-11-07 11:17:48 +01:00
module.exports = {
2017-10-31 20:20:09 +01:00
entry: [__dirname + "/src/index.js"],
2016-11-07 11:17:48 +01:00
output: {
path: __dirname + "/dist",
filename: "app.bundle.js",
publicPath: "http://0.0.0.0:8080/"
2016-11-07 11:17:48 +01:00
},
module: {
loaders: [
{
test: /.js?$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
}
}