tracman-server/webpack.config.js

12 lines
207 B
JavaScript
Raw Normal View History

2017-06-23 11:00:42 -06:00
var path = require('path');
module.exports = {
2017-06-23 11:16:08 -06:00
entry: './static/js/src/map.js',
2017-06-23 11:00:42 -06:00
output: {
filename: 'map.js',
2017-06-23 11:16:08 -06:00
path: path.resolve(__dirname, 'static/js/dist')
},
externals: {
google: 'google'
2017-06-23 11:00:42 -06:00
}
};