zulip/tools/webpack.config.js

12 lines
213 B
JavaScript
Raw Normal View History

var path = require('path');
2015-10-26 17:11:44 +01:00
module.exports = {
entry: [
'./static/js/src/main.js',
2015-10-26 17:11:44 +01:00
],
output: {
path: path.resolve(__dirname, '../static/js'),
filename: 'bundle.js',
2015-10-26 17:11:44 +01:00
},
};