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

19 lines
246 B
JavaScript
Raw Normal View History

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