tracman-server/webpack.config.js

16 lines
396 B
JavaScript
Raw Normal View History

2017-06-23 11:00:42 -06:00
var path = require('path');
module.exports = {
2017-06-23 12:33:17 -06:00
entry: {
header: './static/js/src/header.js',
footer: './static/js/src/footer.js',
map: './static/js/src/map.js',
controls: './static/js/src/map-controls.js',
settings: './static/js/src/settings.js',
2017-06-30 10:48:29 -06:00
password: './static/js/src/password.js'
2017-06-23 12:33:17 -06:00
},
2017-06-23 11:00:42 -06:00
output: {
2017-06-23 12:33:17 -06:00
filename: '[name].js',
2017-06-23 11:16:08 -06:00
path: path.resolve(__dirname, 'static/js/dist')
2017-06-23 11:00:42 -06:00
}
};