zulip/tools/webpack.config.js

14 lines
309 B
JavaScript
Raw Normal View History

var path = require('path');
module.exports = {
context: path.resolve(__dirname, "../"),
entry: {
translations: ['./static/js/translations.js'],
},
2015-10-26 17:11:44 +01:00
output: {
path: path.resolve(__dirname, '../static/webpack-bundles'),
filename: '[name].js',
2015-10-26 17:11:44 +01:00
},
plugins: [],
2015-10-26 17:11:44 +01:00
};