mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './static/js/src/main.js',
|
|
output: {
|
|
path: path.resolve(__dirname, '../static/js'),
|
|
filename: 'bundle.js',
|
|
},
|
|
};
|