tracman-server/webpack.config.js

18 lines
491 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',
password: './static/js/src/password.js',
mellt: './static/js/src/mellt.js',
commonpasswords: './static/js/src/common-passwords.js'
},
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
}
};