tracman-server/webpack.config.js

16 lines
374 B
JavaScript
Raw Normal View History

2017-06-30 11:14:59 -06:00
const path = require('path');
2017-06-23 11:00:42 -06:00
module.exports = {
2017-06-23 12:33:17 -06:00
entry: {
2017-06-30 13:03:43 -06:00
header: './static/js/header.js',
footer: './static/js/footer.js',
map: './static/js/map.js',
controls: './static/js/map-controls.js',
settings: './static/js/settings.js',
password: './static/js/password.js'
2017-06-23 12:33:17 -06:00
},
2017-06-23 11:00:42 -06:00
output: {
2017-06-30 13:03:43 -06:00
filename: '.[name].bun.js',
path: path.resolve(__dirname, 'static/js')
2017-06-23 11:00:42 -06:00
}
};