1
0
forked from MTSR/mapserver
mapserver/public/js/rollup.config.js

19 lines
246 B
JavaScript
Raw Normal View History

2019-09-19 08:03:57 +02:00
2019-12-29 16:12:30 +01:00
export default [{
2019-09-19 08:03:57 +02:00
input: 'main.js',
output: {
file :'bundle.js',
format: 'umd',
sourcemap: true,
compact: true
}
2019-12-29 16:12:30 +01:00
},{
input: 'stats.js',
output: {
file :'bundle-stats.js',
format: 'umd',
sourcemap: true,
compact: true
}
}];