mapserver/static/js/rollup.config.js
2019-12-29 16:12:30 +01:00

19 lines
246 B
JavaScript

export default [{
input: 'main.js',
output: {
file :'bundle.js',
format: 'umd',
sourcemap: true,
compact: true
}
},{
input: 'stats.js',
output: {
file :'bundle-stats.js',
format: 'umd',
sourcemap: true,
compact: true
}
}];