tracman-server/webpack.config.js

9 lines
160 B
JavaScript

var path = require('path');
module.exports = {
entry: './static/map.js',
output: {
filename: 'map.js',
path: path.resolve(__dirname, 'static/dist')
}
};